diff options
| author | Marten Veldthuis <marten@veldthuis.com> | 2012-01-31 13:40:11 +0100 |
|---|---|---|
| committer | Marten Veldthuis <marten@veldthuis.com> | 2012-01-31 13:40:11 +0100 |
| commit | cb46423c53e947904408b5b7152f8a466e4ad2d4 (patch) | |
| tree | 69f30fcacdb8539b8d55d4d98cfac843d18d4eeb | |
| parent | 175cdd11f4e956113c2123d548528ebc36688946 (diff) | |
| download | rails-cb46423c53e947904408b5b7152f8a466e4ad2d4.tar.gz rails-cb46423c53e947904408b5b7152f8a466e4ad2d4.tar.bz2 rails-cb46423c53e947904408b5b7152f8a466e4ad2d4.zip | |
Fix use of Deprecation without requiring active_support/deprecation in ActiveSupport::Concern
| -rw-r--r-- | activesupport/lib/active_support/concern.rb | 2 |
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: # |
