diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-19 15:13:52 -0400 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-19 15:13:52 -0400 |
commit | 8f3584ab30cb1d2a23a2c59cd0c2e467facd390d (patch) | |
tree | fb427ced15ece1531680ac23e7423cc31e14d192 /activesupport/lib | |
parent | 4e141f16ecc9c442772e361cb526d9b381b1c93e (diff) | |
parent | 33653c889819e5d586cedeb176963e80b88fe202 (diff) | |
download | rails-8f3584ab30cb1d2a23a2c59cd0c2e467facd390d.tar.gz rails-8f3584ab30cb1d2a23a2c59cd0c2e467facd390d.tar.bz2 rails-8f3584ab30cb1d2a23a2c59cd0c2e467facd390d.zip |
Merge pull request #19814 from y-yagi/array_inquiry
add missing require for ArrayInquirer
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/array/inquiry.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/inquiry.rb b/activesupport/lib/active_support/core_ext/array/inquiry.rb index de623c466c..e8f44cc378 100644 --- a/activesupport/lib/active_support/core_ext/array/inquiry.rb +++ b/activesupport/lib/active_support/core_ext/array/inquiry.rb @@ -1,3 +1,5 @@ +require 'active_support/array_inquirer' + class Array # Wraps the array in an +ArrayInquirer+ object, which gives a friendlier way # to check its string-like contents. |