diff options
author | Marten Veldthuis <marten@veldthuis.com> | 2012-01-31 14:03:51 +0100 |
---|---|---|
committer | Marten Veldthuis <marten@veldthuis.com> | 2012-01-31 14:19:59 +0100 |
commit | f3e1b21ca91afbd97f33d1e51808dd320d82b4de (patch) | |
tree | 7d3c01aab480c0f915a813c9ed7a923a880671a6 /activesupport/lib | |
parent | 563be40c59cba98b8bc162cf185ed7512e22b850 (diff) | |
download | rails-f3e1b21ca91afbd97f33d1e51808dd320d82b4de.tar.gz rails-f3e1b21ca91afbd97f33d1e51808dd320d82b4de.tar.bz2 rails-f3e1b21ca91afbd97f33d1e51808dd320d82b4de.zip |
Fix use of Deprecation without requiring active_support/deprecation in message verifier
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/message_verifier.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/message_verifier.rb b/activesupport/lib/active_support/message_verifier.rb index be5b7ef79f..0d9580abca 100644 --- a/activesupport/lib/active_support/message_verifier.rb +++ b/activesupport/lib/active_support/message_verifier.rb @@ -1,4 +1,5 @@ require 'active_support/base64' +require 'active_support/deprecation' require 'active_support/core_ext/object/blank' module ActiveSupport |