clear_highlight_classes

clear_highlight_classes() Instance Public methods

draw6

draw6() Instance Public methods Dropping gumballs

generate_line

generate_line(row, options = Hash.new) Class Public methods This method is a shortcut for converting a single row (Array) into a CSV String. The options parameter can be anything ::new understands. This method understands an additional :encoding parameter to set the base Encoding for the output. This method will try to guess your Encoding from the first non-nil field in row, if possible, but you may need to use this parameter as a backup plan. The :row_sep option defaults to $INP

mark_previous

mark_previous(index) Instance Public methods Also aliased as: previous_mark

__create_trusted_slave_obj

__create_trusted_slave_obj(name, keys) Instance Public methods

__validation_class_list

__validation_class_list() Instance Public methods

validates_associated

validates_associated(*attr_names) Instance Public methods Validates whether the associated object or objects are all valid. Works with any kind of association. class Book < ActiveRecord::Base has_many :pages belongs_to :library validates_associated :pages, :library end WARNING: This validation must not be used on both ends of an association. Doing so will lead to a circular dependency and cause infinite recursion. NOTE: This validation will not fail if the association ha

next_migration_number

next_migration_number(number) Instance Public methods Determines the version number of the next migration.

nodeValue

nodeValue() Instance Public methods VARIANT nodeValue value stored in the node

feed

e.feed obj â nil Instance Public methods Sets the value to be returned by the next yield inside e. If the value is not set, the yield returns nil. This value is cleared after being yielded. o = Object.new def o.each x = yield # (2) blocks p x # (5) => "foo" x = yield # (6) blocks p x # (8) => nil x = yield # (9) blocks p x # not reached w/o another e.next end e = o.to_enum e.next #