aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-22 01:19:58 +0200
committerXavier Noria <fxn@hashref.com>2016-08-22 01:19:58 +0200
commit65b62f652ca564c3904e2d32d25e079090f3c78c (patch)
tree43dc974030bdfe0ad27984cb8a0ce34fb89b5e2e
parent64d578517aeda06311e157eaa12a4b7d9919e08e (diff)
downloadrails-65b62f652ca564c3904e2d32d25e079090f3c78c.tar.gz
rails-65b62f652ca564c3904e2d32d25e079090f3c78c.tar.bz2
rails-65b62f652ca564c3904e2d32d25e079090f3c78c.zip
adds a couple of missing requires
-rw-r--r--actionpack/lib/action_view/helpers/rendering_helper.rb2
-rw-r--r--actionpack/lib/action_view/template/resolver.rb1
2 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/rendering_helper.rb b/actionpack/lib/action_view/helpers/rendering_helper.rb
index 626e1a1ab7..6f9829d591 100644
--- a/actionpack/lib/action_view/helpers/rendering_helper.rb
+++ b/actionpack/lib/action_view/helpers/rendering_helper.rb
@@ -1,3 +1,5 @@
+require "active_support/core_ext/hash/indifferent_access"
+
module ActionView
module Helpers
# = Action View Rendering
diff --git a/actionpack/lib/action_view/template/resolver.rb b/actionpack/lib/action_view/template/resolver.rb
index bea8c221c3..06653a665b 100644
--- a/actionpack/lib/action_view/template/resolver.rb
+++ b/actionpack/lib/action_view/template/resolver.rb
@@ -1,6 +1,7 @@
require "pathname"
require "active_support/core_ext/class"
require "active_support/core_ext/io"
+require "active_support/core_ext/string/starts_ends_with"
require "action_view/template"
module ActionView