Results for: "module_function"

Default options for gem commands for Ruby packagers.

The options here should be structured as an array of string “gem” command names as keys and a string of the default options as values.

Example:

def self.operating_system_defaults

{
    'install' => '--no-rdoc --no-ri --env-shebang',
    'update' => '--no-rdoc --no-ri --env-shebang'
}

end

No documentation available
No documentation available

Returns true if the MKD command may be used to create a new directory within the directory.

No documentation available
No documentation available

Extracts the files in this package into destination_dir

The full name of the specification to be activated.

The Gem::Specification for this activation request.

The name and version of the specification.

Unlike Gem::Specification#full_name, the platform is not included.

The name and version of the specification.

Unlike Gem::Specification#full_name, the platform is not included.

No documentation available
No documentation available

Check is passed argument valid ‘mod_sequence_value’ in RFC 4551 terminology

Ensure argument is ‘mod_sequence_value’ or raise DataFormatError

No documentation available

Creates a new Socket::Option object for IP_MULTICAST_TTL.

The size is dependent on the platform.

p Socket::Option.ipv4_multicast_ttl(10)
#=> #<Socket::Option: INET IP MULTICAST_TTL 10>

Returns the ipv4_multicast_ttl data in sockopt as an integer.

sockopt = Socket::Option.ipv4_multicast_ttl(10)
p sockopt.ipv4_multicast_ttl => 10

Creates a new Socket::Option object for IP_MULTICAST_LOOP.

The size is dependent on the platform.

sockopt = Socket::Option.int(:INET, :IPPROTO_IP, :IP_MULTICAST_LOOP, 1)
p sockopt.int => 1

p Socket::Option.ipv4_multicast_loop(10)
#=> #<Socket::Option: INET IP MULTICAST_LOOP 10>

Returns the ipv4_multicast_loop data in sockopt as an integer.

sockopt = Socket::Option.ipv4_multicast_loop(10)
p sockopt.ipv4_multicast_loop => 10

Set the default value for the :id_conv option.

See new(). The initial default value is a DRbIdConv instance.

No documentation available

Adds a response handler. For example, to detect when the server sends a new EXISTS response (which normally indicates new messages being added to the mailbox), add the following handler after selecting the mailbox:

imap.add_response_handler { |resp|
  if resp.kind_of?(Net::IMAP::UntaggedResponse) and resp.name == "EXISTS"
    puts "Mailbox now has #{resp.data} messages"
  end
}
No documentation available
No documentation available
Search took: 6ms  ·  Total Results: 3202