Last active
June 25, 2017 17:39
-
-
Save mariorcardoso/5b55199c7b1bfa69d7c78a13c3f98e1e 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
> product = Product.create(cost: Money.new(500, "EUR")) | |
> product.cost | |
=> #<Money fractional:500 currency:EUR> | |
> product.cost.cents | |
=> 500 | |
> product.currency | |
=> "EUR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment