Results for: "pstore"

Start a stream emission with encoding

See Psych::Handler#start_stream

No documentation available
No documentation available

Sends a POST request to the path.

Returns the response as a Net::HTTPResponse object.

When called with a block, the block is passed an HTTPResponse object. The body of that response will not have been read yet; the block can process it using HTTPResponse#read_body, if desired.

Returns the response.

This method never raises Net::* exceptions.

# example
response = http.request_post('/cgi-bin/nice.rb', 'datadatadata...')
p response.status
puts response.body          # body is already read in this case

# using block
http.request_post('/cgi-bin/nice.rb', 'datadatadata...') {|response|
  p response.status
  p response['content-type']
  response.read_body do |str|   # read body now
    print str
  end
}
No documentation available
No documentation available
No documentation available

Are we doctoring a gem repository?

No documentation available
No documentation available

Return a progress reporter object chosen from the current verbosity.

No documentation available

Returns true if the entry is a directory (i.e., the value of the type fact is dir, cdir, or pdir).

Raises NoMemoryError when allocating an instance of the given classes.

Is this handler a streaming handler?

A set of tasks to prepare the file in order to parse it

No documentation available
No documentation available
No documentation available

Returns an array of the eigenvectors

Sends an HTTPRequest object req to the HTTP server.

If req is a Net::HTTP::Post or Net::HTTP::Put request containing data, the data is also sent. Providing data for a Net::HTTP::Head or Net::HTTP::Get request results in an ArgumentError.

Returns an HTTPResponse object.

When called with a block, passes an HTTPResponse object to the block. The body of the response will not have been read yet; the block can process it using HTTPResponse#read_body, if desired.

This method never raises Net::* exceptions.

Starts a POP3 session and iterates over each POPMail object, yielding it to the block. This method is equivalent to:

Net::POP3.start(address, port, account, password) do |pop|
  pop.each_mail do |m|
    yield m
  end
end

This method raises a POPAuthenticationError if authentication fails.

Example

Net::POP3.foreach('pop.example.com', 110,
                  'YourAccount', 'YourPassword') do |m|
  file.write m.pop
  m.delete if $DELETE
end
No documentation available
No documentation available

Does this dependency require a prerelease?

Search took: 3ms  ·  Total Results: 2928