Results for: "strip"

This is a null install as a locked specification is considered installed. options are ignored.

Installs this specification using the Gem::Installer options. The install method yields a Gem::Installer instance, which indicates the gem will be installed, or nil, which indicates the gem is already installed.

After installation spec is updated to point to the just-installed specification.

No documentation available

This is a null install as this gem was unpacked into a directory. options are ignored.

Make sure the trust directory exists. If it does exist, make sure it’s actually a directory. If not, then create it with the appropriate permissions.

No documentation available

Compile a ClassVariableAndWriteNode node

Compile a ClassVariableOperatorWriteNode node

Compile a ClassVariableOrWriteNode node

Compile a ConstantPathAndWriteNode node

Compile a ConstantPathOperatorWriteNode node

Compile a ConstantPathOrWriteNode node

Compile a GlobalVariableAndWriteNode node

Compile a GlobalVariableOperatorWriteNode node

Compile a GlobalVariableOrWriteNode node

Compile a LocalVariableAndWriteNode node

Compile a LocalVariableOperatorWriteNode node

Compile a LocalVariableOrWriteNode node

@@foo &&= bar

becomes

@@foo && @@foo = bar

@@foo ||= bar

becomes

defined?(@@foo) ? @@foo : @@foo = bar

@@foo += bar

becomes

@@foo = @@foo + bar

$foo &&= bar

becomes

$foo && $foo = bar

$foo ||= bar

becomes

defined?($foo) ? $foo : $foo = bar

$foo += bar

becomes

$foo = $foo + bar

foo &&= bar

becomes

foo && foo = bar

Search took: 3ms  ·  Total Results: 2190