aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb
blob: 074e2eabf871a4e79e469d23a531809681566054 (plain) (tree)
1
2
3
4
5
6
7
8
9
                    
                         
 

                                             

                          
       
     
   

                                                              
require 'bigdecimal'
require 'bigdecimal/util'

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

BigDecimal.prepend(ActiveSupport::BigDecimalWithDefaultFormat)