Methods
Public Class methods
datadir(package_name)

Return the path to the data directory associated with the given library/package name. Normally this is just

  "#{Config::CONFIG['datadir']}/#{name}"

but may be modified by tools like RubyGems to handle versioned data directories.

# File lib/lore/facets/rbconfig.rb, line 40
    def self.datadir(package_name)
      File.join(CONFIG['datadir'], package_name)
    end
inspect()
# File lib/lore/facets/rbconfig.rb, line 26
  def self.inspect
    CONFIG.inspect
  end