Gem::

DataDirRefinements module

A Refinement for restoring the datadir accessor to Gem::Specification, which was deprecated and removed for seemingly no reason.

Constants

VERSION

Package version

Public Instance Methods

datadir( gem_name )
# File lib/rubygems/datadir.rb, line 12
def datadir( gem_name )
        spec = @loaded_specs[ gem_name ]
        return nil if spec.nil?
        return spec.datadir
end