Skip to content

Commit

Permalink
Merge pull request #13967 from fphilipe/fix-missing-action-view-const
Browse files Browse the repository at this point in the history
Require action_view to fix missing constant ENCODING_FLAG
  • Loading branch information
senny committed Feb 7, 2014
2 parents 2248684 + 47860b6 commit 9da2ae1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions actionpack/CHANGELOG.md
@@ -1,3 +1,8 @@
* Properly require `action_view` in `AbstractController::Rendering` to prevent
uninitialized constant error for `ENCODING_FLAG`.

*Philipe Fatio*

* Do not discard query parameters that form a hash with the same root key as * Do not discard query parameters that form a hash with the same root key as
the `wrapper_key` for a request using `wrap_parameters`. the `wrapper_key` for a request using `wrap_parameters`.


Expand Down
1 change: 1 addition & 0 deletions actionpack/lib/abstract_controller/rendering.rb
@@ -1,5 +1,6 @@
require 'active_support/concern' require 'active_support/concern'
require 'active_support/core_ext/class/attribute' require 'active_support/core_ext/class/attribute'
require 'action_view'
require 'action_view/view_paths' require 'action_view/view_paths'
require 'set' require 'set'


Expand Down

0 comments on commit 9da2ae1

Please sign in to comment.