##// END OF EJS Templates
XML parameters parser extracted to actionpack-xml_parser gem in Rails 4 (#14534)....
Jean-Philippe Lang -
r13408:6c6ea394af66
parent child
Show More
@@ -9,6 +9,7 gem "mime-types"
9 gem "awesome_nested_set", "3.0.0"
9 gem "awesome_nested_set", "3.0.0"
10 gem "protected_attributes"
10 gem "protected_attributes"
11 gem "actionpack-action_caching"
11 gem "actionpack-action_caching"
12 gem "actionpack-xml_parser"
12
13
13 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
14 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
14 gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby]
15 gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin, :jruby]
@@ -47,6 +47,10 module RedmineApp
47 # Do not include all helpers
47 # Do not include all helpers
48 config.action_controller.include_all_helpers = false
48 config.action_controller.include_all_helpers = false
49
49
50 # XML parameter parser removed from core in Rails 4.0
51 # and extracted to actionpack-xml_parser gem
52 config.middleware.insert_after ActionDispatch::ParamsParser, ActionDispatch::XmlParamsParser
53
50 # Specific cache for search results, the default file store cache is not
54 # Specific cache for search results, the default file store cache is not
51 # a good option as it could grow fast. A memory store (32MB max) is used
55 # a good option as it could grow fast. A memory store (32MB max) is used
52 # as the default. If you're running multiple server processes, it's
56 # as the default. If you're running multiple server processes, it's
General Comments 0
You need to be logged in to leave comments. Login now