diff options
author | Akira Matsuda <ronnie@dio.jp> | 2013-01-31 14:03:42 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2013-01-31 15:56:47 +0900 |
commit | 9ec14c223b787d04b381511799b9b21499e29e68 (patch) | |
tree | 70500d8c4ef2514bfbba0503e38eebb77c130d59 /activesupport | |
parent | 162f7c1edcc45074aca482b4688a08e8ab41083f (diff) | |
download | rails-9ec14c223b787d04b381511799b9b21499e29e68.tar.gz rails-9ec14c223b787d04b381511799b9b21499e29e68.tar.bz2 rails-9ec14c223b787d04b381511799b9b21499e29e68.zip |
Missing require extract_options
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/cache/mem_cache_store.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/message_encryptor.rb | 1 | ||||
-rw-r--r-- | activesupport/test/ordered_hash_test.rb | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/mem_cache_store.rb b/activesupport/lib/active_support/cache/mem_cache_store.rb index c7dbfc95dc..512296554f 100644 --- a/activesupport/lib/active_support/cache/mem_cache_store.rb +++ b/activesupport/lib/active_support/cache/mem_cache_store.rb @@ -7,6 +7,7 @@ end require 'digest/md5' require 'active_support/core_ext/marshal' +require 'active_support/core_ext/array/extract_options' module ActiveSupport module Cache diff --git a/activesupport/lib/active_support/message_encryptor.rb b/activesupport/lib/active_support/message_encryptor.rb index b7dc0689b0..ce40a7d689 100644 --- a/activesupport/lib/active_support/message_encryptor.rb +++ b/activesupport/lib/active_support/message_encryptor.rb @@ -1,5 +1,6 @@ require 'openssl' require 'base64' +require 'active_support/core_ext/array/extract_options' module ActiveSupport # MessageEncryptor is a simple way to encrypt values which get stored diff --git a/activesupport/test/ordered_hash_test.rb b/activesupport/test/ordered_hash_test.rb index 14ba4e0076..6aea9d56f1 100644 --- a/activesupport/test/ordered_hash_test.rb +++ b/activesupport/test/ordered_hash_test.rb @@ -2,6 +2,7 @@ require 'abstract_unit' require 'active_support/json' require 'active_support/core_ext/object/to_json' require 'active_support/core_ext/hash/indifferent_access' +require 'active_support/core_ext/array/extract_options' class OrderedHashTest < ActiveSupport::TestCase def setup |