Results for: "Logger"

Declare that a gem of name name with reqs requirements is needed.

A requirement is a prerelease if any of the versions inside of it are prereleases

A string representation of this Version.

A version is considered a prerelease if it contains a letter.

No documentation available

Downloads spec and writes it to dir. See also Gem::RemoteFetcher#download.

Default fetcher instance. Use this instead of ::new to reduce object allocation.

Loads Ruby format gemspec from file.

Load custom marshal format, re-initializing defaults as needed

Recursively walk dependencies of this spec, executing the block for each hop.

Set the version to version, potentially also setting required_rubygems_version if version indicates it is a prerelease.

No documentation available

Display an informational alert. Will ask question if it is not nil.

No documentation available
No documentation available
def sort(*filenames)
  Sort.new(self, *filenames)
end

Returns a Glob filter object, with the given pattern object

No documentation available

returns the parser to be used.

Unless a URI::Parser is defined, then DEFAULT_PARSER is used.

Sets userinfo, argument is string like ‘name:pass’

Args

v

String

Description

public setter for the user component. (with validation)

see also URI::Generic.check_user

Usage

require 'uri'

uri = URI.parse("http://john:S3nsit1ve@my.example.com")
uri.user = "sam"
# =>  "sam"
uri
#=> #<URI::HTTP:0x00000000881d90 URL:http://sam:V3ry_S3nsit1ve@my.example.com>

returns the userinfo, either as ‘user’ or ‘user:password’

returns the user component

Args

v

String

Description

public setter for the query component v.

Usage

require 'uri'

uri = URI.parse("http://my.example.com/?id=25")
uri.query = "id=1"
# =>  "id=1"
uri
#=> #<URI::HTTP:0x000000008e89e8 URL:http://my.example.com/?id=1>

Checks if URI has a path

Args

v

URI or String

Description

attempts to parse other URI oth, returns [parsed_oth, self]

Usage

require 'uri'

uri = URI.parse("http://my.example.com")
uri.coerce("http://foo.com")
#=> [#<URI::HTTP:0x00000000bcb028 URL:http://foo.com/>, #<URI::HTTP:0x00000000d92178 URL:http://my.example.com>]
Search took: 4ms  ·  Total Results: 2247