class Waistband::StringifiedArray

Public Instance Methods

stringify_all() click to toggle source
# File lib/waistband/stringified_array.rb, line 4
def stringify_all
  self.map do |val|
    if val.respond_to?(:to_s)
      val.to_s
    else
      val
    end
  end
end