aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-04-19 20:26:05 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2015-04-19 20:26:05 +0900
commit33653c889819e5d586cedeb176963e80b88fe202 (patch)
treecdab66d133ba3fd81a2fb414b279d14f5c039b4e /activesupport
parentd849f42b4ecf687ed5350f5a2402fb795aa33aac (diff)
downloadrails-33653c889819e5d586cedeb176963e80b88fe202.tar.gz
rails-33653c889819e5d586cedeb176963e80b88fe202.tar.bz2
rails-33653c889819e5d586cedeb176963e80b88fe202.zip
add missing require for ArrayInquirer
Diffstat (limited to 'activesupport')
-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.