aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/big_decimal/conversions.rb
Commit message (Collapse)AuthorAgeFilesLines
* add require to suppress warning; remove variableVipul A M2013-04-041-0/+1
|
* Moving NumberHelpers from ActionView to ActiveSupportAndrew Mutz2012-05-271-2/+7
|
* No need to override the to_yaml method in BigDecimalRafael Mendonça França2012-01-041-15/+0
|
* No need to use rescue block to require psychRafael Mendonça França2012-01-041-6/+1
|
* No need to check if YAML::ENGINE is defined since ruby 1.9 does thatRafael Mendonça França2012-01-041-1/+1
|
* only backport the to_d method if it does not existAaron Patterson2011-08-241-2/+5
|
* Remove unneeded yaml_as declarationbrainopia2011-01-281-2/+0
|
* prefering psych as the yaml parser if possible, fixing assertions for YAML ↵Aaron Patterson2011-01-211-0/+6
| | | | 1.1 compatibility
* fixing psych support in big decimal, fixing tests to support YAML 1.1Aaron Patterson2011-01-211-0/+7
|
* adding to_d to BigDecimalAaron Patterson2011-01-101-0/+4
|
* Convert bigdecimal extension modules to class reopensJeremy Kemper2009-03-211-30/+20
|
* * Introduce ActiveSupport.core_ext Integer, %w(conversions time etc)Jeremy Kemper2009-03-211-0/+37
* Convert some extension modules to simply reopening the class * Remove deprecated Float time extensions * Fold Base64 extension into ActiveSupport::Base64 since stdlib Base64 is gone