aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/bigdecimal/formatting.rb
blob: d86adbea6cb1961d98f83fb45ca33a5c14194acf (plain) (tree)
1
2
3
4
5
6
7






                             
class BigDecimal #:nodoc:
  
  alias :_original_to_s :to_s
  def to_s(format="F")
    _original_to_s(format)
  end
end