Created
October 28, 2016 10:53
-
-
Save sos4nt/d46c4753b2d99ea2fef536abda25631e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'money' | |
require 'json' | |
Money.use_i18n = false | |
class Money | |
def to_json(*) | |
to_s | |
end | |
end | |
h = { foo: Money.new(100) } | |
#=> {:foo=>#<Money fractional:100 currency:USD>} | |
puts h.to_json | |
# {"foo":1.00} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment