new

new(*list) Class Public methods

check_pending!

check_pending!(connection = Base.connection) Class Public methods

continue?

continue?() Instance Public methods Determines whether the response received was a Positive Intermediate reply (3xx reply code)

selection_set

selection_set(*args) Instance Public methods

match

match( pattern, cons=false ) Instance Public methods

string_length

string_length( string ) Class Public methods UNTESTED

curry

prc.curry â a_procprc.curry(arity) â a_proc Instance Public methods Returns a curried proc. If the optional arity argument is given, it determines the number of arguments. A curried proc receives some arguments. If a sufficient number of arguments are supplied, it passes the supplied arguments to the original proc and returns the result. Otherwise, returns another curried proc that takes the rest of arguments. b = proc {|x, y, z| (x||0) + (y||0) + (z||0) } p b.curry[1][2]

session_store

session_store(*args) Instance Public methods

namespaces

namespaces() Instance Public methods

cycle

cycle(first_value, *values) Instance Public methods Creates a Cycle object whose to_s method cycles through elements of an array every time it is called. This can be used for example, to alternate classes for table rows. You can use named cycles to allow nesting in loops. Passing a Hash as the last parameter with a :name key will create a named cycle. The default name for a cycle without a :name key is "default". You can manually reset a cycle by calling #reset_cycle and passing th