Results for: "uri"

Looks up all typeclass DNS resources for name. See getresource for argument details.

Override to display a longer description of what this command does.

Writes out this config file, replacing its source.

Changes in rubygems to lazily loading ‘rubygems/command` (in order to lazily load `optparse` as a side effect) affect bundler’s custom installer which uses ‘Gem::Command` without requiring it (up until bundler 2.2.29). This hook is to compensate for that missing require.

TODO: Remove when rubygems no longer supports running on bundler older than 2.2.29.

Verifies that this gem:

After verification the gem specification from the gem is available from spec

A detailed description of this gem. See also summary

No documentation available

Writes s to the stream. If the argument is not a String it will be converted using .to_s method. Returns the number of bytes written.

Writes args to the stream.

See IO#print for full details.

Formats and writes to the stream converting parameters under control of the format string.

See Kernel#sprintf for format string details.

See IO#print.

See IO#printf.

See IO#write

Create a new Source object.

Create a new repository for the given string.

Generate a random alphanumeric string.

The argument n specifies the length, in characters, of the alphanumeric string to be generated. The argument chars specifies the character list which the result is consist of.

If n is not specified or is nil, 16 is assumed. It may be larger in the future.

The result may contain A-Z, a-z and 0-9, unless chars is specified.

require 'random/formatter'

Random.alphanumeric     #=> "2BuBuLf3WfSKyQbR"
# or
prng = Random.new
prng.alphanumeric(10) #=> "i6K93NdqiH"

Random.alphanumeric(4, chars: [*"0".."9"]) #=> "2952"
# or
prng = Random.new
prng.alphanumeric(10, chars: [*"!".."/"]) #=> ",.,++%/''."

Writes pemmable, which must respond to to_pem to path with the given permissions. If passed cipher and passphrase those arguments will be passed to to_pem.

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

Process.uid # => 1000

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

Process.gid # => 1000

Compile a ClassVariableWriteNode node

Compile a GlobalVariableWriteNode node

Compile a InstanceVariableWriteNode node

Compile a LocalVariableWriteNode node

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

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

Search took: 2ms  ·  Total Results: 1431