Class: Float
Class Method Summary collapse
- .to_ruby(object) ⇒ Object (also: to_parse)
Class Method Details
.to_ruby(object) ⇒ Object Also known as: to_parse
3 4 5 6 7 8 9 |
# File 'lib/opium/extensions/float.rb', line 3 def to_ruby(object) if object.is_a? Symbol object.to_s.to_f elsif object object.to_f end end |