I'm trying to round my money without cents, but I want the amount to be rounded up always (ceil).
I've done:
MoneyRails.configure do |config|
config.rounding_mode = BigDecimal::ROUND_CEILING
end
Money.new(12345).format(:no_cents)
But it still returns "$123" instead of "$124".
I'm looking through the Money gem and format doesn't appear to leverage any rounding rules. Its just chopping off cents to get an "absolute" value.
Source here: https://github.com/RubyMoney/money/blob/master/lib/money/money/formatting.rb
Tried to find a work around for you, maybe add this as a method to your Rails Model: