Results for: "match"

No documentation available
No documentation available

Ensures that signer is valid for time and was signed by the issuer. If the issuer is nil no verification is performed.

Ensures the public key of key matches the public key in signer

Ensures the root certificate in chain is self-signed and valid for time.

Ensures the root of chain has a trusted certificate in trust_dir and the digests of the two certificates match according to digester

Extracts the certificate chain from the spec and calls verify to ensure the signatures and certificate chain is valid according to the policy..

Return the full path to the cached gem file matching the given name and version requirement. Returns ‘nil’ if no match.

Example:

get_path 'rake', '> 0.4' # "/usr/lib/ruby/gems/1.8/cache/rake-0.4.2.gem"
get_path 'rake', '< 0.1' # nil
get_path 'rak'           # nil (exact name required)
No documentation available
No documentation available

Update RubyGems software to the latest version.

No documentation available
No documentation available

Raises IOError if the TarWriter is closed

Path of activations from the current list.

Returns true if this gem is installable for the current platform.

Returns true if this gem is installable for the current platform.

Returns true if this specification is installable on this platform.

Returns the path to the trusted certificate

Returns the path to the trusted certificate with the given ASN.1 name

Loads the given certificate_file

Returns the full file path of this frame.

Same as path, except that it will return absolute path even if the frame is in the main script.

No documentation available

Returns a new lazy enumerator with the concatenated results of running block once for every element in the lazy enumerator.

["foo", "bar"].lazy.flat_map {|i| i.each_char.lazy}.force
#=> ["f", "o", "o", "b", "a", "r"]

A value x returned by block is decomposed if either of the following conditions is true:

Otherwise, x is contained as-is in the return value.

[{a:1}, {b:2}].lazy.flat_map {|i| i}.force
#=> [{:a=>1}, {:b=>2}]

Like Enumerable#filter_map, but chains operation to be lazy-evaluated.

(1..).lazy.filter_map { |i| i * 2 if i.even? }.first(5)
#=> [4, 8, 12, 16, 20]
Search took: 10ms  ·  Total Results: 1777