Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add ActionController#build_with_env | brainopia | 2015-01-22 | 1 | -0/+6 |
| | | | | | To have an easier way to setup a controller instance with custom environment | ||||
* | Add `ActionController::Metal#set_request!` | brainopia | 2015-01-21 | 1 | -2/+2 |
| | | | | | Add `ActionController::Metal#set_request!` to set a request on controller instance without calling dispatch. | ||||
* | remove duplicate method (_status_code) in action_dispatch | Abdelkader Boudih | 2014-10-19 | 1 | -1/+1 |
| | |||||
* | fixes stack level too deep exception on action named 'status' returning ↵ | Christiaan Van den Poel | 2014-05-15 | 1 | -1/+1 |
| | | | | 'head :ok' | ||||
* | Do note remove `Content-Type` when `render :body` | Prem Sichanugrist | 2014-03-05 | 1 | -2/+2 |
| | | | | | | | | | | | | | `render :body` should just not set the `Content-Type` header. By removing the header, it breaks the compatibility with other parts. After this commit, `render :body` will returns `text/html` content type, sets by default from `ActionDispatch::Response`, and it will preserve the overridden content type if you override it. Fixes #14197, #14238 This partially reverts commit 3047376870d4a7adc7ff15c3cb4852e073c8f1da. | ||||
* | Add `#no_content_type` attribute to `AD::Response` | Prem Sichanugrist | 2014-02-18 | 1 | -2/+2 |
| | | | | | Setting this attribute to `true` will remove the content type header from the request. This is use in `render :body` feature. | ||||
* | extract response setting to a method | Aaron Patterson | 2012-07-03 | 1 | -2/+8 |
| | |||||
* | push response creation down since third param is never used. | Aaron Patterson | 2012-07-02 | 1 | -3/+3 |
| | |||||
* | Remove a relic of #request being in RackDelegation | wycats | 2010-06-19 | 1 | -4/+0 |
| | |||||
* | Changes made while working on upgrading cells to Rails 3 | wycats | 2010-06-02 | 1 | -4/+4 |
| | |||||
* | Eliminate warnings for AM on 1.8 | wycats | 2010-03-16 | 1 | -4/+2 |
| | |||||
* | Simplify the action endpoint: | Carlhuda | 2010-03-08 | 1 | -4/+1 |
| | | | | | | | * 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 | ||||
* | All AD modules are "deferrable" | Joshua Peek | 2009-12-22 | 1 | -0/+3 |
| | |||||
* | reset_session needs to be a real method so flash can override it | Joshua Peek | 2009-12-21 | 1 | -1/+5 |
| | |||||
* | Rename RackConvenience => RackDelegation | Joshua Peek | 2009-12-20 | 1 | -0/+28 |