aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb
blob: 074e2eabf871a4e79e469d23a531809681566054 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require 'bigdecimal'
require 'bigdecimal/util'

module ActiveSupport
  module BigDecimalWithDefaultFormat #:nodoc:
    def to_s(format = 'F')
      super(format)
    end
  end
end

BigDecimal.prepend(ActiveSupport::BigDecimalWithDefaultFormat)