Class: Array
- Inherits:
-
Object
- Object
- Array
- Defined in:
- lib/remocon/util/array.rb
Instance Method Summary collapse
Instance Method Details
#stringify_values ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/remocon/util/array.rb', line 4 def stringify_values map do |e| if e.kind_of?(Hash) e.stringify_values elsif e.kind_of?(Array) e.stringify_values else e.to_s end end end |