backend=

backend=(name) Instance Public methods

succ

str.succ â new_str Instance Public methods Returns the successor to str. The successor is calculated by incrementing characters starting from the rightmost alphanumeric (or the rightmost character if there are no alphanumerics) in the string. Incrementing a digit always results in another digit, and incrementing a letter results in another letter of the same case. Incrementing nonalphanumerics uses the underlying character set's collating sequence. If the increment generates a âc

to_time

t.to_time â time Instance Public methods Returns a copy of self as local mode.

scan

scan(str, base=nil) Class Public methods

install_id_conv

install_id_conv(idconv) Class Public methods Set the default id conversion object. This is expected to be an instance such as DRb::DRbIdConv that responds to to_id and to_obj that can convert objects to and from DRb references. See DRbServer#default_id_conv.

date_field_tag

date_field_tag(name, value = nil, options = {}) Instance Public methods Creates a text field of type âdateâ. Options Accepts the same options as text_field_tag.

start

start(name, id, payload) Instance Public methods

deleteData

deleteData(arg0, arg1) Instance Public methods VOID deleteData delete string within the value I4 arg0 --- offset [IN] I4 arg1 --- count [IN]

gmtime

time.gmtime â time Instance Public methods Converts time to UTC (GMT), modifying the receiver. t = Time.now #=> 2007-11-19 08:18:31 -0600 t.gmt? #=> false t.gmtime #=> 2007-11-19 14:18:31 UTC t.gmt? #=> true t = Time.now #=> 2007-11-19 08:18:51 -0600 t.utc? #=> false t.utc #=> 2007-11-19 14:18:51 UTC t.utc? #=> true

collect

enum.collect { |obj| block } â arrayenum.collect â an_enumerator Instance Public methods Returns a new array with the results of running block once for every element in enum. If no block is given, an enumerator is returned instead. (1..4).collect { |i| i*i } #=> [1, 4, 9, 16] (1..4).collect { "cat" } #=> ["cat", "cat", "cat", "cat"]