aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/rails_on_rack.md
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-09-18 15:36:55 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-09-18 15:36:55 -0700
commit38d2bf5fd1f3e014f2397898d371c339baa627b1 (patch)
treedeb693f38ee9b8e1892d813d0a0e3eb35f20aa28 /guides/source/rails_on_rack.md
parenta9334616120cffb560017e6a563ad401e425602b (diff)
downloadrails-38d2bf5fd1f3e014f2397898d371c339baa627b1.tar.gz
rails-38d2bf5fd1f3e014f2397898d371c339baa627b1.tar.bz2
rails-38d2bf5fd1f3e014f2397898d371c339baa627b1.zip
mostly remove the ParamsParser middleware
This can still be added to the middleware stack, but is really not necessary. I'll follow up with a commit that deprecates the constant
Diffstat (limited to 'guides/source/rails_on_rack.md')
-rw-r--r--guides/source/rails_on_rack.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md
index 1e2fe94010..0db90fedb3 100644
--- a/guides/source/rails_on_rack.md
+++ b/guides/source/rails_on_rack.md
@@ -121,7 +121,6 @@ use ActiveRecord::QueryCache
use ActionDispatch::Cookies
use ActionDispatch::Session::CookieStore
use ActionDispatch::Flash
-use ActionDispatch::ParamsParser
use Rack::Head
use Rack::ConditionalGet
use Rack::ETag
@@ -284,10 +283,6 @@ Much of Action Controller's functionality is implemented as Middlewares. The fol
* Sets up the flash keys. Only available if `config.action_controller.session_store` is set to a value.
-**`ActionDispatch::ParamsParser`**
-
-* Parses out parameters from the request into `params`.
-
**`Rack::Head`**
* Converts HEAD requests to `GET` requests and serves them as so.