Represents the primitive object id for OpenSSL::ASN1
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.
Used internally to indicate that a dependency conflicted with a spec that would be activated.
Raised when multiple fields of the same type are configured on the same repository.
RubyVM::AbstractSyntaxTree::Node
instances are created by parse methods in RubyVM::AbstractSyntaxTree
.
This class is MRI specific.
Generic error class raised by SSLSocket
and SSLContext
.
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:
Request body: optional.
Response body: yes.
Safe: no.
Idempotent: yes.
Cacheable: no.
Related:
Net::HTTP#delete
: sends DELETE
request, returns response object.