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.
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 node field represents a single child node in the syntax tree. It resolves to a Prism::Node
in Ruby.
A node list field represents a list of child nodes in the syntax tree. It resolves to an array of Prism::Node
instances in Ruby.
Indicates that the DNS
response was unable to be decoded.
Parses a gem.deps.rb.lock file and constructs a LockSet containing the dependencies found inside. If the lock file is missing no LockSet is constructed.
A set of gems for installation sourced from remote sources and local .gem files
Represents an installed gem. This is used for dependency resolution.
A source representing a single .gem file. This is used for installation of local gems.
An absolutely silent progress reporter.
A basic dotted progress reporter.
An absolutely silent download reporter.
Raised when the tree is malformed or there is a bug in the compiler.
The parser gem has a list of diagnostics with a hard-coded set of error messages. We create our own diagnostic class in order to set our own error messages.
Error raised when no cdylib artifact was created
Converts Ruby link flags into something cargo understands