aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/middleware.rb
Commit message (Collapse)AuthorAgeFilesLines
* remove vestigial codeAaron Patterson2015-08-071-39/+0
| | | | | Looks like this was left over from converting Rails to Rack. I think it's safe to remove now.
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-1/+1
| | | | 's/[ \t]*$//' -i {} \;)
* Simplify the action endpoint:Carlhuda2010-03-081-1/+2
| | | | | | | * Remove ActionEndpoint in favor of passing a block to MiddlewareStack * Always create a Request; the performance win of RackDelegation is around the response; the Request object hit is limited to a single object allocation * #dispatch takes a Request
* Update AC::Middleware to play better with the normal AC::Metal stack. This ↵Yehuda Katz2009-11-051-20/+20
| | | | required stopping to use #call for non-rack-related stuff
* Fixed stupid mistake... nothing to see here.Carl Lerche2009-08-261-1/+1
|
* Set the request and response in ActionController::MiddlewareCarl Lerche2009-08-261-0/+4
|
* Create new ActionController::Middleware class that will work as a normal ↵Yehuda Katz2009-08-261-0/+34
Rack middleware. * This initial implementation is a bit hackish, but it uses a normal middleware API so it's future-proof when we improve the internals.