start_job

start_job(command = nil) Instance Public methods start a job

rect

num.rect â array Instance Public methods Returns an array; [num, 0].

new

new(year, month, day, hour, min, sec) Class Public methods Creates a new XMLRPC::DateTime instance with the parameters year, month, day as date and hour, min, sec as time. Raises an ArgumentError if a parameter is out of range, or if year is not of the Integer type.

new

new(prefix) Class Public methods

class_variable_defined?

obj.class_variable_defined?(symbol) â true or false Instance Public methods Returns true if the given class variable is defined in obj. class Fred @@foo = 99 end Fred.class_variable_defined?(:@@foo) #=> true Fred.class_variable_defined?(:@@bar) #=> false

safeip_configinfo

safeip_configinfo(slot = nil) Instance Public methods

stale?

stale?(record_or_options, additional_options = {}) Instance Public methods Sets the etag and/or last_modified on the response and checks it against the client request. If the request doesn't match the options provided, the request is considered stale and should be generated from scratch. Otherwise, it's fresh and we don't need to generate anything and a reply of 304 Not Modified is sent. Parameters: :etag. :last_modified. :public By default the Cache-Control header is private,

open_recurse

open_recurse() Instance Public methods

tksearch

tksearch(*args) Instance Public methods

delete

delete(*records) Instance Public methods Deletes the records supplied and removes them from the collection. For has_many associations, the deletion is done according to the strategy specified by the :dependent option. Returns an array with the deleted records. If no :dependent option is given, then it will follow the default strategy. The default strategy is :nullify. This sets the foreign keys to NULL. For, has_many :through, the default strategy is delete_all. class Person < A