diff options
author | Arthur Neves <arthurnn@gmail.com> | 2016-03-01 22:05:56 -0500 |
---|---|---|
committer | Arthur Neves <arthurnn@gmail.com> | 2016-03-01 22:05:56 -0500 |
commit | 0c376e7ec800b529b9430fee1377b82682200981 (patch) | |
tree | a6aef17b5a2c656a4561feebf12ef238bb0c4589 /actionpack | |
parent | 1ac2ddbc433ec96dd06affb6f10f33d9eb12d52a (diff) | |
download | rails-0c376e7ec800b529b9430fee1377b82682200981.tar.gz rails-0c376e7ec800b529b9430fee1377b82682200981.tar.bz2 rails-0c376e7ec800b529b9430fee1377b82682200981.zip |
Add missing require to file
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/abstract_controller/rendering.rb | 1 |
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 |