Results for: "pstore"

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.

Turns email_address into an OpenSSL::X509::Name

Deprecation method to deprecate Rubygems commands

Deprecation method to deprecate Rubygems commands

No documentation available

Default options for the gem install and update commands.

No documentation available
No documentation available
No documentation available
No documentation available

Determines if current environment is eglible for update suggestion.

Asks the user to answer question with an answer from the given list.

Add the –platform option to the option parser.

@return [Array<Vertex>] the vertices of {#graph} that have an edge with

`self` as their {Edge#origin}

Resolves the {#original_requested} dependencies into a full dependency

Example
graph

@raise [ResolverError] if successful resolution is impossible @return [DependencyGraph] the dependency graph of successfully resolved

Example
dependencies

@return [RequirementState] the current state the resolution is

Example
operating upon
No documentation available
No documentation available

Gets the global do_not_reverse_lookup flag.

Example
BasicSocket.do_not_reverse_lookup  #=> false

Sets the global do_not_reverse_lookup flag.

The flag is used for initial value of do_not_reverse_lookup for each socket.

Example
s1 = TCPSocket.new("localhost", 80)
p s1.do_not_reverse_lookup                 #=> true
BasicSocket.do_not_reverse_lookup = false
s2 = TCPSocket.new("localhost", 80)
p s2.do_not_reverse_lookup                 #=> false
p s1.do_not_reverse_lookup                 #=> true

Gets the do_not_reverse_lookup flag of basicsocket.

Example
require 'socket'

BasicSocket.do_not_reverse_lookup = false
TCPSocket.open("www.ruby-lang.org", 80) {|sock|
  p sock.do_not_reverse_lookup      #=> false
}
BasicSocket.do_not_reverse_lookup = true
TCPSocket.open("www.ruby-lang.org", 80) {|sock|
  p sock.do_not_reverse_lookup      #=> true
}

Sets the do_not_reverse_lookup flag of basicsocket.

Example
TCPSocket.open("www.ruby-lang.org", 80) {|sock|
  p sock.do_not_reverse_lookup       #=> true
  p sock.peeraddr                    #=> ["AF_INET", 80, "221.186.184.68", "221.186.184.68"]
  sock.do_not_reverse_lookup = false
  p sock.peeraddr                    #=> ["AF_INET", 80, "carbon.ruby-lang.org", "54.163.249.195"]
}
No documentation available

Starts tracing object allocations.

MRI specific feature

Return all reachable objects from root.

Search took: 6ms  ·  Total Results: 3094