Module Config
In: lib/more/facets/rbconfig.rb

Methods

datadir   inspect  

Public Class methods

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.

[Source]

    # File lib/more/facets/rbconfig.rb, line 40
40:     def self.datadir(package_name)
41:       File.join(CONFIG['datadir'], package_name)
42:     end

[Source]

    # File lib/more/facets/rbconfig.rb, line 26
26:   def self.inspect
27:     CONFIG.inspect
28:   end

[Validate]