Results for: "match"

No documentation available
No documentation available
No documentation available

See IO.foreach when path is a file.

See Dir.foreach when path is a directory.

Returns a Echo object, for the given strings

Returns a Cat object, for the given filenames

Returns a Concat object, for the given jobs

Iterates a block for each line.

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

Args

v

String

Description

public setter for the scheme component v. (with validation)

see also URI::Generic.check_scheme

Usage

require 'uri'

uri = URI.parse("http://my.example.com")
uri.scheme = "https"
# =>  "https"
uri
#=> #<URI::HTTP:0x000000008e89e8 URL:https://my.example.com>

Args

v

String

Description

public setter for the path component v. (with validation)

see also URI::Generic.check_path

Usage

require 'uri'

uri = URI.parse("http://my.example.com/pub/files")
uri.path = "/faq/"
# =>  "/faq/"
uri
#=> #<URI::HTTP:0x000000008e89e8 URL:http://my.example.com/faq/>

Checks if URI has a path

Checks if URI is relative

Returns normalized URI.

require 'uri'

URI("HTTP://my.EXAMPLE.com").normalize
#=> #<URI::HTTP http://my.example.com/>

Normalization here means:

Destructive version of normalize

returns attributes.

setter for attributes val

Checks if URI has a path For URI::LDAP this will return false

Iterates over the request headers

Sets the response’s status to the status code

Iterates over each header in the response

Will this response body be returned using chunked transfer-encoding?

Search took: 4ms  ·  Total Results: 2093