Results for: "module_function"

No documentation available

Represents the primitive object id for OpenSSL::ASN1

No documentation available
No documentation available

An error class raised when dynamic parts are found while computing a constant path’s full name. For example: Foo::Bar::Baz -> does not raise because all parts of the constant path are simple constants var::Bar::Baz -> raises because the first part of the constant path is a local variable

A directive in the pack template language.

IO wrapper that creates digests of contents written to the IO it wraps.

Used internally to indicate that a dependency conflicted with a spec that would be activated.

No documentation available
No documentation available

Raised when multiple fields of the same type are configured on the same repository.

No documentation available
No documentation available
No documentation available

RubyVM::AbstractSyntaxTree::Node instances are created by parse methods in RubyVM::AbstractSyntaxTree.

This class is MRI specific.

No documentation available

Generic error class raised by SSLSocket and SSLContext.

No documentation available

The base class for any Node in a YAML parse tree. This class should never be instantiated.

No documentation available

Raised when the data length recorded in the gzip file footer is not equivalent to the length of the actual uncompressed data.

File-based session storage class.

Implements session storage as a flat file of ‘key=value’ values. This storage type only works directly with String values; the user is responsible for converting other types to Strings when storing and from Strings when retrieving.

In-memory session storage class.

Implements session storage as a global in-memory hash. Session data will only persist for as long as the Ruby interpreter instance does.

Dummy session storage class.

Implements session storage place holder. No actual storage will be done.

Class for representing HTTP method DELETE:

require 'net/http'
uri = URI('http://example.com')
hostname = uri.hostname # => "example.com"
uri.path = '/posts/1'
req = Net::HTTP::Delete.new(uri) # => #<Net::HTTP::Delete DELETE>
res = Net::HTTP.start(hostname) do |http|
  http.request(req)
end

See Request Headers.

Properties:

Related:

Search took: 3ms  ·  Total Results: 3346