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.
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.
Class for representing WebDAV method MOVE:
require 'net/http' uri = URI('http://example.com') hostname = uri.hostname # => "example.com" req = Net::HTTP::Move.new(uri) # => #<Net::HTTP::Move MOVE> res = Net::HTTP.start(hostname) do |http| http.request(req) end
See Request Headers.
Related:
Net::HTTP#move
: sends MOVE
request, returns response object.
A result class specialized for holding tokens produced by the lexer.
A source that is represented by a file path.
A field that represents the file path.
A field representing the leading comments.
Indicates that the DNS
response was unable to be decoded.