to_f

str.to_f â float Instance Public methods Returns the result of interpreting leading characters in str as a floating point number. Extraneous characters past the end of a valid number are ignored. If there is not a valid number at the start of str, 0.0 is returned. This method never raises an exception. "123.45e1".to_f #=> 1234.5 "45.67 degrees".to_f #=> 45.67 "thx1138".to_f #=> 0.0

id2obj

id2obj(chart, id) Class Public methods

classes_and_includes_and_extends_for

classes_and_includes_and_extends_for(name) Instance Public methods Returns the stores wherein name is found along with the classes, extends and includes that match it

full_name

full_name() Instance Public methods

def_class_accessor

def_class_accessor(klass, name, type, *args) Instance Public methods

metrics_hash 2

metrics_hash(option=nil) Instance Public methods

not_set_name

not_set_name() Class Public methods

to_feed

to_feed(feed, current) Instance Public methods

iso8601

DateTime.iso8601(string='-4712-01-01T00:00:00+00:00'[, start=ITALY]) â datetime Class Public methods Creates a new Date object by parsing from a string according to some typical ISO 8601 formats. DateTime.iso8601('2001-02-03T04:05:06+07:00') #=> #<DateTime: 2001-02-03T04:05:06+07:00 ...> DateTime.iso8601('20010203T040506+0700') #=> #<DateTime: 2001-02-03T04:05:06+07:00 ...> DateTime.iso8601('2001-W05-6T04:05:06

xmlschema

DateTime.xmlschema(string='-4712-01-01T00:00:00+00:00'[, start=ITALY]) â datetime Class Public methods Creates a new Date object by parsing from a string according to some typical XML Schema formats. DateTime.xmlschema('2001-02-03T04:05:06+07:00') #=> #<DateTime: 2001-02-03T04:05:06+07:00 ...>