aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-04-19 15:13:52 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-04-19 15:13:52 -0400
commit8f3584ab30cb1d2a23a2c59cd0c2e467facd390d (patch)
treefb427ced15ece1531680ac23e7423cc31e14d192 /activesupport/lib/active_support
parent4e141f16ecc9c442772e361cb526d9b381b1c93e (diff)
parent33653c889819e5d586cedeb176963e80b88fe202 (diff)
downloadrails-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/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/array/inquiry.rb2
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.