aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/bigdecimal.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-03-26 02:43:38 +0000
committerMichael Koziarski <michael@koziarski.com>2008-03-26 02:43:38 +0000
commitdcbdd004fc3b28ec976ffa946954f1700e3a553d (patch)
treebc813a1fb3b0046aa2e9c4d2e17c5f331367e442 /activesupport/lib/active_support/core_ext/bigdecimal.rb
parentc10b2255b580de9b763bab28872ebf3434a16d8f (diff)
downloadrails-dcbdd004fc3b28ec976ffa946954f1700e3a553d.tar.gz
rails-dcbdd004fc3b28ec976ffa946954f1700e3a553d.tar.bz2
rails-dcbdd004fc3b28ec976ffa946954f1700e3a553d.zip
Standardise the implementation of the extensions to BigDecimal. Closes #10608 [mikong]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9091 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/bigdecimal.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/bigdecimal.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/bigdecimal.rb b/activesupport/lib/active_support/core_ext/bigdecimal.rb
index b442ae9655..d429078c91 100644
--- a/activesupport/lib/active_support/core_ext/bigdecimal.rb
+++ b/activesupport/lib/active_support/core_ext/bigdecimal.rb
@@ -1,2 +1,6 @@
require 'bigdecimal'
require 'active_support/core_ext/bigdecimal/conversions'
+
+class BigDecimal#:nodoc:
+ include ActiveSupport::CoreExtensions::BigDecimal::Conversions
+end