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

                         
 

                                             
                          
                   
       
     
   

                                                              
# frozen_string_literal: true

require "bigdecimal"
require "bigdecimal/util"

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

BigDecimal.prepend(ActiveSupport::BigDecimalWithDefaultFormat)