Skip to content

Instantly share code, notes, and snippets.

@jaequery
Created January 13, 2015 08:15
Show Gist options
  • Save jaequery/3e4aaff3577f773e68b1 to your computer and use it in GitHub Desktop.
Save jaequery/3e4aaff3577f773e68b1 to your computer and use it in GitHub Desktop.
def self.convert_bd_in_hash(hash)
hash.map_values do |v|
if v.class == BigDecimal
v.to_s('f')
end
end
return hash
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment