Results for: "pstore"

Generates a radio-button Input element.

name is the name of the input field. value is the value of the field if checked. checked specifies whether the field starts off checked.

Alternatively, the attributes can be specified as a hash.

radio_button("name", "value")
  # <INPUT TYPE="radio" NAME="name" VALUE="value">

radio_button("name", "value", true)
  # <INPUT TYPE="radio" NAME="name" VALUE="value" CHECKED>

radio_button("NAME" => "name", "VALUE" => "value", "ID" => "foo")
  # <INPUT TYPE="radio" NAME="name" VALUE="value" ID="foo">
No documentation available

just for compatibility

Returns a hash of the key/value pairs:

req = Net::HTTP::Get.new(uri)
req.to_hash
# =>
{"accept-encoding"=>["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],
 "accept"=>["*/*"],
 "user-agent"=>["Ruby"],
 "host"=>["jsonplaceholder.typicode.com"]}
No documentation available

Stores form data to be used in a POST or PUT request.

The form data given in params consists of zero or more fields; each field is:

Argument params should be an Enumerable (method params.map will be called), and is often an array or hash.

First, we set up a request:

_uri = uri.dup
_uri.path ='/posts'
req = Net::HTTP::Post.new(_uri)

Argument params As an Array

When params is an array, each of its elements is a subarray that defines a field; the subarray may contain:

The various forms may be mixed:

req.set_form(['foo', %w[bar 1], ['file', file]])

Argument params As a Hash

When params is a hash, each of its entries is a name/value pair that defines a field:

Examples:

# Nil-valued fields.
req.set_form({'foo' => nil, 'bar' => nil, 'baz' => nil})

# String-valued fields.
req.set_form({'foo' => 0, 'bar' => 1, 'baz' => 2})

# IO-valued field.
require 'stringio'
req.set_form({'file' => StringIO.new('Ruby is cool.')})

# Mixture of fields.
req.set_form({'foo' => nil, 'bar' => 1, 'file' => file})

Optional argument enctype specifies the value to be given to field 'Content-Type', and must be one of:

Optional argument formopt is a hash of options (applicable only when argument enctype is 'multipart/form-data') that may include the following entries:

returns a Time that represents the Last-Modified field.

A convenience method which is same as follows:

text ','
breakable

Create a new BreakNode node.

Create a new EnsureNode node.

Create a new ForNode node.

Create a new OrNode node.

Create a new ParenthesesNode node.

Create a new RedoNode node.

Create a new RescueNode node.

Create a new RetryNode node.

Create a new ReturnNode node.

Create a new StatementsNode node.

Create a new StringNode node.

Create a new XStringNode node.

Retrieve the value of one of the StringFlags flags.

Returns the fields for the given node.

Deserialize the tokens represented by the given string into a parse result.

Return a Hash for RJIT statistics. --rjit-stats makes more information available.

No documentation available
Search took: 5ms  ·  Total Results: 4418