Results for: "pstore"

No documentation available
No documentation available
No documentation available

Provides a single method deprecate to be used to declare when something is going away.

class Legacy
  def self.klass_method
    # ...
  end

  def instance_method
    # ...
  end

  extend Gem::Deprecate
  deprecate :instance_method, "X.z", 2011, 4

  class << self
    extend Gem::Deprecate
    deprecate :klass_method, :none, 2011, 4
  end
end

Mixin methods for install and update options for Gem::Commands

Mixin methods for local and remote Gem::Command options.

No documentation available
No documentation available

Includes URI::REGEXP::PATTERN

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

Generic Exception class that is raised if an error occurs during a Digest operation.

An OpenSSL::OCSP::Request contains the certificate information for determining if a certificate has been revoked or not. A Request can be created for a certificate or from a DER-encoded request created elsewhere.

No documentation available
No documentation available
No documentation available

This handler will capture an event and record the event. Recorder events are available vial Psych::Handlers::Recorder#events.

For example:

recorder = Psych::Handlers::Recorder.new
parser = Psych::Parser.new recorder
parser.parse '--- foo'

recorder.events # => [list of events]

# Replay the events

emitter = Psych::Emitter.new $stdout
recorder.events.each do |m, args|
  emitter.send m, *args
end
No documentation available

Represents a YAML stream. This is the root node for any YAML parse tree. This node must have one or more child nodes. The only valid child node for a Psych::Nodes::Stream node is Psych::Nodes::Document.

This class walks a YAML AST, converting each node to Ruby

No documentation available

Authenticator for the “LOGIN” authentication type. See authenticate().

Authenticator for the “PLAIN” authentication type. See authenticate().

Search took: 5ms  ·  Total Results: 3363