aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorMarten Veldthuis <marten@veldthuis.com>2012-01-31 13:40:11 +0100
committerMarten Veldthuis <marten@veldthuis.com>2012-01-31 13:40:11 +0100
commitcb46423c53e947904408b5b7152f8a466e4ad2d4 (patch)
tree69f30fcacdb8539b8d55d4d98cfac843d18d4eeb /activesupport/lib
parent175cdd11f4e956113c2123d548528ebc36688946 (diff)
downloadrails-cb46423c53e947904408b5b7152f8a466e4ad2d4.tar.gz
rails-cb46423c53e947904408b5b7152f8a466e4ad2d4.tar.bz2
rails-cb46423c53e947904408b5b7152f8a466e4ad2d4.zip
Fix use of Deprecation without requiring active_support/deprecation in ActiveSupport::Concern
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/concern.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/concern.rb b/activesupport/lib/active_support/concern.rb
index af3da937c7..97fa2db4a9 100644
--- a/activesupport/lib/active_support/concern.rb
+++ b/activesupport/lib/active_support/concern.rb
@@ -1,3 +1,5 @@
+require 'active_support/deprecation'
+
module ActiveSupport
# A typical module looks like this:
#