Results for: "remove_const"

No documentation available

TimeStamp struct

No documentation available

Raised when encoding is invalid.

No documentation available

Class for representing HTTP method POST:

require 'net/http'
uri = URI('http://example.com')
hostname = uri.hostname # => "example.com"
uri.path = '/posts'
req = Net::HTTP::Post.new(uri) # => #<Net::HTTP::Post POST>
req.body = '{"title": "foo","body": "bar","userId": 1}'
req.content_type = 'application/json'
res = Net::HTTP.start(hostname) do |http|
  http.request(req)
end

Properties:

Related:

Class for representing WebDAV method MKCOL:

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

Related:

Class for representing WebDAV method COPY:

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

Related:

Switch that can omit argument.

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

Indicates that the DNS response was unable to be decoded.

Indicates that the DNS request was unable to be encoded.

A Resolv::LOC::Coord

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

Generates a index files for use as a gem server.

See ‘gem help generate_index`

Search took: 5ms  ·  Total Results: 3564