Save the rparen_loc
location using the given saved source so that it can be retrieved later.
Save the lparen_loc
location using the given saved source so that it can be retrieved later.
Save the rparen_loc
location using the given saved source so that it can be retrieved later.
Save the lparen_loc
location using the given saved source so that it can be retrieved later.
Save the rparen_loc
location using the given saved source so that it can be retrieved later.
Save the lparen_loc
location using the given saved source so that it can be retrieved later.
Save the rparen_loc
location using the given saved source so that it can be retrieved later.
Full paths in the gem to add to $LOAD_PATH
when this gem is activated.
Creates a Resolver
that queries only against the already installed gems for the needed
dependencies.
Return currently unresolved specs that contain the file matching path
.
Expire memoized instance variables that can incorrectly generate, replace or miss files due changes in certain attributes used to compute them.
Create a new MatchRequiredNode
node.
Create a new RequiredParameterNode
node.
Create a new RescueModifierNode
node.
Creates a self-signed certificate with an issuer and subject from email
, a subject alternative name of email
and the given extensions
for the key
.
Returns the value of the given instance variable, or nil if the instance variable is not set. The @
part of the variable name should be included for regular instance variables. Throws a NameError
exception if the supplied symbol is not valid as an instance variable name. String
arguments are converted to symbols.
class Fred def initialize(p1, p2) @a, @b = p1, p2 end end fred = Fred.new('cat', 99) fred.instance_variable_get(:@a) #=> "cat" fred.instance_variable_get("@b") #=> 99