Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵ | Santiago Pastorino | 2010-08-14 | 1 | -1/+1 |
| | | | | 's/[ \t]*$//' -i {} \;) | ||||
* | Simplify the action endpoint: | Carlhuda | 2010-03-08 | 1 | -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 Katz | 2009-11-05 | 1 | -20/+20 |
| | | | | required stopping to use #call for non-rack-related stuff | ||||
* | Fixed stupid mistake... nothing to see here. | Carl Lerche | 2009-08-26 | 1 | -1/+1 |
| | |||||
* | Set the request and response in ActionController::Middleware | Carl Lerche | 2009-08-26 | 1 | -0/+4 |
| | |||||
* | Create new ActionController::Middleware class that will work as a normal ↵ | Yehuda Katz | 2009-08-26 | 1 | -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. |