Class: ToFloat
- Defined in:
- lib/testcentricity_mobile/data_objects/data_objects_helper.rb
Overview
perform conversion of String to Float when reading data from .csv or .xml files
Class Method Summary collapse
Class Method Details
.convert(value) ⇒ Object
184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/testcentricity_mobile/data_objects/data_objects_helper.rb', line 184 def self.convert(value) if value.is_a? Float value else if value.is_float? value.to_f else value end end end |