diff options
| author | Marten Veldthuis <marten@veldthuis.com> | 2012-01-31 13:41:08 +0100 |
|---|---|---|
| committer | Marten Veldthuis <marten@veldthuis.com> | 2012-01-31 13:41:08 +0100 |
| commit | 563be40c59cba98b8bc162cf185ed7512e22b850 (patch) | |
| tree | 28ccb4a4be0572007424d5ec910ea87b5ea27891 | |
| parent | cb46423c53e947904408b5b7152f8a466e4ad2d4 (diff) | |
| download | rails-563be40c59cba98b8bc162cf185ed7512e22b850.tar.gz rails-563be40c59cba98b8bc162cf185ed7512e22b850.tar.bz2 rails-563be40c59cba98b8bc162cf185ed7512e22b850.zip | |
Fix use of Deprecation without requiring active_support/deprecation in ActiveSupport::Concern in Base64
| -rw-r--r-- | activesupport/lib/active_support/base64.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/base64.rb b/activesupport/lib/active_support/base64.rb index f0cfdedaa0..da141071fb 100644 --- a/activesupport/lib/active_support/base64.rb +++ b/activesupport/lib/active_support/base64.rb @@ -1,3 +1,5 @@ +require 'active_support/deprecation' + begin require 'base64' rescue LoadError |
