Does the money-rails
gem require a specific order of price
and currency
when initializing an object? For example, take a look at the following:
Object.new(currency: 'JPY', price: 25)
=> #<Object id: nil, price_cents: 25, currency: "JPY">
If we specify the price
first, we get an incorrect value (2500) for the price:
Object.new(price: 25, currency: 'JPY')
=> #<Object id: nil, price_cents: 2500, currency: "JPY">
Object
contains the following: monetize :price_cents
.