Skip to content

Instantly share code, notes, and snippets.

@lulalala
Created June 16, 2016 03:06
Embed
What would you like to do?
irb(main):016:0> Money.new(1.5) == 0.015.to_money
=> true
irb(main):017:0> Money.new(1.5).instance_variable_get(:@fractional).to_s
=> "1.5"
irb(main):018:0> 0.015.to_money.instance_variable_get(:@fractional).to_s
=> "2.0"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment