Results for: "Dir.chdir"

Path to specification files of default gems.

Returns a new Dir object representing the directory specified by the given integer directory file descriptor fd:

d0 = Dir.new('..')
d1 = Dir.for_fd(d0.fileno)

Note that the returned d1 does not have an associated path:

d0.path # => '..'
d1.path # => nil

This method uses the fdopendir() function defined by POSIX 2008; the method is not implemented on non-POSIX platforms (raises NotImplementedError).

Returns the dirpath string that was used to create self (or nil if created by method Dir.for_fd):

Dir.new('example').path # => "example"

Returns the local directory to write uri to.

Returns the full path to the cache directory containing this spec’s cached gem.

Returns the full path to the base gem directory.

eg: /usr/local/lib/ruby/gems/1.8

Returns full path to the directory where gem’s extensions are installed.

Returns path to the extensions directory.

Returns the full path to this spec’s gem directory. eg: /usr/local/lib/ruby/1.8/gems/mygem-1.0

Returns the full path to the gems directory containing this spec’s gem directory. eg: /usr/local/lib/ruby/1.8/gems

Lazy accessor for the spec’s gem directory.

The path where this gem installs its extensions.

Returns the full path to installed gem’s bin directory.

NOTE: do not confuse this with bindir, which is just ‘bin’, not a full path.

Returns the full path to this spec’s documentation directory. If type is given it will be appended to the end. For example:

spec.doc_dir      # => "/path/to/gem_repo/doc/a-1"

spec.doc_dir 'ri' # => "/path/to/gem_repo/doc/a-1/ri"
No documentation available
No documentation available

Returns the full path to this spec’s ri directory.

Returns the full path to the directory containing this spec’s gemspec file. eg: /usr/local/lib/ruby/gems/1.8/specifications

Returns a Gem::Security::TrustDir which wraps the directory where trusted certificates live.

Default spec directory path to be used if an alternate value is not specified in the environment

Returns binary extensions dir for specified RubyGems base dir or nil if such directory cannot be determined.

By default, the binary extensions are located side by side with their Ruby counterparts, therefore nil is returned

No documentation available
No documentation available
No documentation available

Returns the full path to the build info directory

Search took: 4ms  ·  Total Results: 1391