Created
September 18, 2011 14:50
-
-
Save acook/1225138 to your computer and use it in GitHub Desktop.
Simple solution to working with currency.
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
# in your migration | |
t.integer :price_in_cents | |
# in your view to display your price | |
= number_to_currency object.price | |
# in your model | |
def price | |
price_in_cents.to_f / 100 | |
end | |
def price= new_price | |
self.price_in_cents = (new_price.to_f * 100) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment