Results for: "strip"

The host to connect to either from the RUBYGEMS_HOST environment variable or from the user’s configuration

Check if gem name version version is installed.

Zlib::GzipReader wrapper that unzips data.

Zlib::GzipWriter wrapper that zips data.

Returns the (real) user ID of the current process.

Process.uid # => 1000

Returns the (real) group ID for the current process:

Process.gid # => 1000

Set the real user ID of the calling process to user. Not available on all platforms.

Set the real group ID of the calling process to group. Not available on all platforms.

Sets the (user) real and/or effective user IDs of the current process to rid and eid, respectively. A value of -1 for either means to leave that ID unchanged. Not available on all platforms.

Sets the (group) real and/or effective group IDs of the current process to rid and eid, respectively. A value of -1 for either means to leave that ID unchanged. Not available on all platforms.

Sets the (user) real, effective, and saved user IDs of the current process to rid, eid, and sid respectively. A value of -1 for any value means to leave that ID unchanged. Not available on all platforms.

Sets the (group) real, effective, and saved user IDs of the current process to rid, eid, and sid respectively. A value of -1 for any value means to leave that ID unchanged. Not available on all platforms.

Compile a ClassVariableWriteNode node

Compile a ConstantAndWriteNode node

Compile a ConstantOperatorWriteNode node

Compile a ConstantOrWriteNode node

Compile a ConstantPathWriteNode node

Compile a GlobalVariableWriteNode node

Compile a InstanceVariableReadNode node

Compile a InstanceVariableTargetNode node

Compile a LocalVariableWriteNode node

Foo &&= bar

becomes

Foo && Foo = bar

Foo ||= bar

becomes

defined?(Foo) ? Foo : Foo = bar

Foo += bar

becomes

Foo = Foo + bar

Dispatch enter and leave events for ClassVariableWriteNode nodes and continue walking the tree.

Search took: 4ms  ·  Total Results: 2417