aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2016-03-01 22:05:56 -0500
committerArthur Neves <arthurnn@gmail.com>2016-03-01 22:05:56 -0500
commit0c376e7ec800b529b9430fee1377b82682200981 (patch)
treea6aef17b5a2c656a4561feebf12ef238bb0c4589
parent1ac2ddbc433ec96dd06affb6f10f33d9eb12d52a (diff)
downloadrails-0c376e7ec800b529b9430fee1377b82682200981.tar.gz
rails-0c376e7ec800b529b9430fee1377b82682200981.tar.bz2
rails-0c376e7ec800b529b9430fee1377b82682200981.zip
Add missing require to file
-rw-r--r--actionpack/lib/abstract_controller/rendering.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb
index 5b45a13269..28f9b76036 100644
--- a/actionpack/lib/abstract_controller/rendering.rb
+++ b/actionpack/lib/abstract_controller/rendering.rb
@@ -1,6 +1,7 @@
require "abstract_controller/base"
require "action_view"
require "active_support/core_ext/object/instance_variables"
+require "active_support/hash_with_indifferent_access"
module AbstractController
class DoubleRenderError < Error