Removes a password from the database for user
in realm
.
Retrieves a password from the database for user
in realm
. If reload_db
is true the database will be reloaded first.
Sets a password in the database for user
in realm
to pass
.
Removes a password from the database for user
in realm
.
Returns the HTTP status description
Returns the full file path of this frame.
Same as path
, but includes the absolute path.
Creates an obscured password in realm
with user
and password
using the auth_type
of this database.
Sets a password in realm
with user
and password
for the auth_type
of this database.
Retrieves a password in realm
for user
for the auth_type
of this database. reload_db
is a dummy value.
@return [Object] the requirement that led to a version of a possibility
with the given name being activated.
Iterates the given block for each element with an index, which starts from offset
. If no block is given, returns a new Enumerator
that includes the index, starting from offset
offset
the starting index to use
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:
x
responds to both each and force, which means that x
is a lazy enumerator.
x
is an array or responds to to_ary.
Otherwise, x
is contained as-is in the return value.
[{a:1}, {b:2}].lazy.flat_map {|i| i}.force #=> [{:a=>1}, {:b=>2}]
Load an iseq object from binary format String
object created by RubyVM::InstructionSequence.to_binary
.
This loader does not have a verifier, so that loading broken/modified binary causes critical problem.
You should not load binary data provided by others. You should use binary data translated by yourself.
Return the best specification that contains the file matching path
.
Specification
attributes that must be non-nil
Creates a regular expression to match IPv4 addresses
Set
the default value for the :load_limit option.
See new(). The initial default value is 25 MB.