Paths in the gem to add to $LOAD_PATH
when this gem is activated. If you have an extension you do not need to add "ext"
to the require path, the extension build process will copy the extension files into “lib” for you.
The default value is "lib"
Usage:
# If all library files are in the root directory... spec.require_paths = ['.']
Is name
a required attribute?
Required specification attributes
DOC: This method needs documented or nodoc’d
Singular accessor for require_paths
Singular accessor for require_paths
Does a sanity check on the specification.
Raises InvalidSpecificationException if the spec does not pass the checks.
Only runs checks that are considered necessary for the specification to be functional.
Return a progress reporter object chosen from the current verbosity.
Simple deprecation method that deprecates name
by wrapping it up in a dummy method. It warns on each call to the dummy method telling the user of repl
(unless repl
is :none) and the Rubygems version that it is planned to go away.
Simple deprecation method that deprecates name
by wrapping it up in a dummy method. It warns on each call to the dummy method telling the user of repl
(unless repl
is :none) and the Rubygems version that it is planned to go away.
Enumerates the parents of directory
.
When allow_prerelease
is set to true
prereleases gems are allowed to match dependencies.
Initialize a new compiler with the given option overrides, used to visit a subtree with the given options.
Create a new compiler with the given options.
Like Enumerable#map
, but chains operation to be lazy-evaluated.
(1..Float::INFINITY).lazy.map {|i| i**2 } #=> #<Enumerator::Lazy: #<Enumerator::Lazy: 1..Infinity>:map> (1..Float::INFINITY).lazy.map {|i| i**2 }.first(3) #=> [1, 4, 9]
Like Enumerable#compact
, but chains operation to be lazy-evaluated.
Returns a printable version of the enumerator chain.
Returns a printable version of the product enumerator.
Returns the number that defines the common difference between two adjacent elements in this arithmetic sequence.