| Commit message (Expand) | Author | Age | Files | Lines |
* | `rack_response` should use the status it's given | Aaron Patterson | 2015-09-14 | 1 | -1/+1 |
* | mime_type will always return a string | Aaron Patterson | 2015-09-08 | 1 | -2/+1 |
* | remove `parse_content_type` parameter | Aaron Patterson | 2015-09-08 | 1 | -6/+7 |
* | avoid allocations when there is no content type set | Aaron Patterson | 2015-09-08 | 1 | -1/+2 |
* | handle implicit rendering correctly | Aaron Patterson | 2015-09-08 | 1 | -3/+4 |
* | remove mime type lookups when parsing the content type | Aaron Patterson | 2015-09-08 | 1 | -5/+5 |
* | refactor content type setting | Aaron Patterson | 2015-09-08 | 1 | -44/+39 |
* | make Content-Type header the canonical location for content-type info | Aaron Patterson | 2015-09-08 | 1 | -34/+50 |
* | pull content type parsing in to a method | Aaron Patterson | 2015-09-08 | 1 | -7/+15 |
* | stop inheriting from Rack::Request | Aaron Patterson | 2015-09-04 | 5 | -11/+13 |
* | Merge pull request #21483 from justanshulsharma/add-ip6-address | Eileen M. Uchitelle | 2015-09-03 | 1 | -1/+1 |
|\ |
|
| * | [ci skip] Added localhost IPv6 | Anshul Sharma | 2015-09-03 | 1 | -1/+1 |
* | | Remove not used requires | Marcin Olichwirowicz | 2015-09-01 | 3 | -4/+0 |
* | | Merge pull request #19788 from cmdrclueless/actionpack_http_url_ipv6 | Rafael Mendonça França | 2015-09-01 | 1 | -1/+1 |
|\ \ |
|
| * | | Fix broken IPv6 addresses handling | Brian Weaver | 2015-04-16 | 1 | -1/+1 |
* | | | add a method for getting the http auth salt | Aaron Patterson | 2015-08-29 | 1 | -0/+4 |
* | | | Merge pull request #21396 from rodzyn/code-cleanup | Guillermo Iguaran | 2015-08-28 | 2 | -13/+2 |
|\ \ \ |
|
| * | | | Code cleanup | Marcin Olichwirowicz | 2015-08-27 | 2 | -13/+2 |
| | |/
| |/| |
|
* | | | remove dependency on `@cache_control` ivar | Aaron Patterson | 2015-08-27 | 1 | -6/+6 |
* | | | remove `@etag` ivar | Aaron Patterson | 2015-08-27 | 1 | -5/+7 |
* | | | use the abstract API in modules | Aaron Patterson | 2015-08-27 | 2 | -14/+15 |
* | | | remove useless conditional | Aaron Patterson | 2015-08-27 | 1 | -2/+0 |
* | | | implement the API required by the abstract Rack request. | Aaron Patterson | 2015-08-27 | 1 | -16/+8 |
* | | | use the non-hash dependent Rack utils API | Aaron Patterson | 2015-08-27 | 1 | -2/+2 |
|/ / |
|
* | | remove redefined method | Aaron Patterson | 2015-08-26 | 1 | -3/+0 |
* | | provide a request and response to all controllers | Aaron Patterson | 2015-08-25 | 1 | -1/+2 |
* | | always return a controller class from the `controller_class` method | Aaron Patterson | 2015-08-25 | 1 | -6/+13 |
* | | Remove unused block arguments | Anshul Sharma | 2015-08-25 | 1 | -1/+1 |
* | | remove another `@env` access | Aaron Patterson | 2015-08-24 | 1 | -1/+1 |
* | | remove more direct access to `env` | Aaron Patterson | 2015-08-24 | 2 | -3/+4 |
* | | fewer calls to `env` | Aaron Patterson | 2015-08-24 | 1 | -2/+2 |
* | | stop using `@env` in the GET / POST methods | Aaron Patterson | 2015-08-24 | 1 | -2/+7 |
* | | use a request object in the session middleware | Aaron Patterson | 2015-08-22 | 1 | -2/+2 |
* | | move more `@env` access to method calls | Aaron Patterson | 2015-08-22 | 1 | -16/+16 |
* | | move ORIGINAL_SCRIPT_NAME to the metaprogrammed methods | Aaron Patterson | 2015-08-22 | 1 | -4/+1 |
* | | metaprogram the HTTP_X_REQUEST_ID method | Aaron Patterson | 2015-08-22 | 1 | -6/+1 |
* | | use `body_stream` instead of getting the env value ourselves | Aaron Patterson | 2015-08-22 | 1 | -1/+1 |
* | | convert `@env` use to get / set header | Aaron Patterson | 2015-08-22 | 1 | -16/+16 |
* | | use get / set header to avoid depending on the `env` ivar | Aaron Patterson | 2015-08-22 | 1 | -11/+14 |
* | | Refactor to remove controller class from route to request | eileencodes | 2015-08-22 | 1 | -0/+12 |
* | | set cached values in the env hash | Aaron Patterson | 2015-08-21 | 1 | -6/+9 |
* | | stop directly accessing `@env` in mime_negotiation | Aaron Patterson | 2015-08-21 | 1 | -8/+8 |
* | | use public API to fetch the parameter filter | Aaron Patterson | 2015-08-21 | 1 | -2/+2 |
* | | use methods on the request object to implement `fetch` | Aaron Patterson | 2015-08-21 | 1 | -2/+8 |
* | | dup the env hash on Header#env | Aaron Patterson | 2015-08-21 | 1 | -1/+1 |
* | | use accessors on the request object for manipulating env | Aaron Patterson | 2015-08-21 | 1 | -3/+3 |
* | | use `set_header` rather than []= | Aaron Patterson | 2015-08-21 | 1 | -1/+1 |
* | | dup the request and mutate its headers object. | Aaron Patterson | 2015-08-21 | 1 | -2/+2 |
* | | pass a request object to the headers object | Aaron Patterson | 2015-08-21 | 2 | -10/+16 |
* | | Simplify code | Marcin Olichwirowicz | 2015-08-13 | 1 | -5/+4 |