aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-08-02 18:51:39 +0200
committerXavier Noria <fxn@hashref.com>2012-08-02 21:59:23 +0200
commit64bc8447c2ccfba74939a556358f845980621a91 (patch)
tree40d230e3c5792b681bf9f5e6f163652d7b4e8cda /activesupport
parent47396a9db8e632a5a570dc776e01368c5913097a (diff)
downloadrails-64bc8447c2ccfba74939a556358f845980621a91.tar.gz
rails-64bc8447c2ccfba74939a556358f845980621a91.tar.bz2
rails-64bc8447c2ccfba74939a556358f845980621a91.zip
load active_support/concern in active_support/rails
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/rails.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/rails.rb b/activesupport/lib/active_support/rails.rb
index d6e701dc41..3cd59e6815 100644
--- a/activesupport/lib/active_support/rails.rb
+++ b/activesupport/lib/active_support/rails.rb
@@ -16,3 +16,6 @@ require 'active_support/core_ext/object/inclusion'
# Rails own autoload, eager_load, etc.
require 'active_support/dependencies/autoload'
+
+# support for ClassMethods and the included macro
+require 'active_support/concern'