tableize

tableize(class_name) Instance Public methods Create the name of a table like Rails does for models to table names. This method uses the pluralize method on the last word in the string. 'RawScaledScorer'.tableize # => "raw_scaled_scorers" 'egg_and_ham'.tableize # => "egg_and_hams" 'fancyCategory'.tableize # => "fancy_categories"

jobs

jobs() Instance Public methods

gridline_configinfo

gridline_configinfo(slot=nil) Instance Public methods

application=

application=(app) Class Public methods Set the current Rake application object.

get_by_hash

get_by_hash(*idx) Instance Public methods

==

==(comparison_object) Instance Public methods Returns true if comparison_object is the same exact object, or comparison_object is of the same type and self has an ID and it is equal to comparison_object.id. Note that new records are different from any other record by definition, unless the other record is the receiver itself. Besides, if you fetch existing records with select and leave the ID out, you're on your own, this predicate will return false. Note also that destroying a rec

add_to_taskbar

add_to_taskbar(keys = {}) Instance Public methods Also aliased as: taskbar_add

create_rule

create_rule(*args, &block) Class Public methods Define a rule for synthesizing tasks.

new

new(attributes = nil, options = {}) Class Public methods New objects can be instantiated as either empty (pass no construction parameter) or pre-set with attributes but not yet saved (pass a hash with key names matching the associated table column names). In both instances, valid attribute keys are determined by the column names of the associated table â hence you can't have attributes that aren't part of the table columns. Example: # Instantiates a single new object User.new(first

<=>

<=>(p1) Instance Public methods Alias for: cmp