Class: ToString
- Defined in:
- lib/testcentricity_mobile/data_objects/data_objects_helper.rb
Overview
perform conversion of Integer to String when reading data from .csv or .xml files
Class Method Summary collapse
Class Method Details
.convert(value) ⇒ Object
156 157 158 159 160 161 162 |
# File 'lib/testcentricity_mobile/data_objects/data_objects_helper.rb', line 156 def self.convert(value) if value.is_a? Integer value.to_s else value end end |