aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
Commit message (Expand)AuthorAgeFilesLines
* remove dead codeAaron Patterson2015-08-101-12/+0
* avoid is_a? callsAaron Patterson2015-08-101-1/+5
* avoid another call to `scope`Aaron Patterson2015-08-101-1/+1
* push `with_scope_level` up so resource_scope doesn't knowAaron Patterson2015-08-101-25/+27
* reuse the same frame so we don't need a singleton hashAaron Patterson2015-08-101-2/+1
* add a null node at the top of the stackAaron Patterson2015-08-101-13/+9
* remove `@nesting` ivarAaron Patterson2015-08-101-9/+21
* pass `shallow` in to the resource constructorAaron Patterson2015-08-101-10/+5
* we have the resource on the stack, so just use itAaron Patterson2015-08-101-1/+1
* Remove wrong commentRafael Mendonça França2015-08-091-1/+0
* Remove the conditional since it is done in the methodRafael Mendonça França2015-08-091-4/+4
* Execute the block when the controller doesn't existRafael Mendonça França2015-08-091-0/+1
* Name the argument according with its jobRafael Mendonça França2015-08-091-2/+2
* push `scope` calls up one frameAaron Patterson2015-08-091-5/+13
* remove useless hashAaron Patterson2015-08-081-2/+2
* stop calling `scope` internallyAaron Patterson2015-08-082-13/+24
* remove useless conditionalAaron Patterson2015-08-081-1/+1
* eliminate assignment in conditionalAaron Patterson2015-08-081-1/+3
* Remove `defaults` hash from `Dispatcher`Aaron Patterson2015-08-082-9/+9
* eliminate runtime conditionalAaron Patterson2015-08-081-10/+9
* whitespaceAaron Patterson2015-08-081-3/+3
* remove the setter from `Scope`Aaron Patterson2015-08-081-4/+0
* Merge pull request #21167 from AaronLasseigne/use_each_keyKasper Timm Hansen2015-08-081-1/+1
|\
| * replace each with each_key when only the key is neededAaron Lasseigne2015-08-081-1/+1
* | Refactor route assertion methods in resources testeileencodes2015-08-081-50/+51
* | Merge pull request #11352 from xaviershay/dispatcher-apiRafael Mendonça França2015-08-084-21/+23
|\ \
| * | Allow a custom dispatcher to be provided to routing.Xavier Shay2015-08-074-19/+17
| * | Move `controller_reference` and `controller_class_names` to protectedXavier Shay2015-08-071-2/+6
* | | Fix deprecation warning in testseileencodes2015-08-081-1/+1
* | | Rename `extra_keys` variables to `query_string_keys`eileencodes2015-08-082-4/+4
* | | Refactor to remove DrawOnce moduleeileencodes2015-08-081-27/+8
|/ /
* | deprecate the env method on controller instancesAaron Patterson2015-08-073-2/+4
* | the request object manages `env`Aaron Patterson2015-08-071-2/+0
* | remove vestigial codeAaron Patterson2015-08-072-82/+0
* | stop using @_env in the controller instanceAaron Patterson2015-08-074-5/+12
* | finish deprecating handling strings and symbolsAaron Patterson2015-08-076-80/+24
* | Using strings or symbols for middleware class names is deprecated.Aaron Patterson2015-08-076-50/+61
* | move `valid?` conditional to the constructorAaron Patterson2015-08-071-11/+21
* | simplify the Middleware constructorAaron Patterson2015-08-073-57/+54
* | use Proc.new to reduce some conditionalsAaron Patterson2015-08-071-3/+1
* | the request class is never changed, so just use it directly in the method bodyAaron Patterson2015-08-072-6/+6
|/
* refactor param parsing middleware to use request objectsAaron Patterson2015-08-072-10/+17
* move flash hash access to methods on the request objectAaron Patterson2015-08-071-2/+11
* Merge pull request #21153 from grosser/grosser/portsRafael Mendonça França2015-08-062-1/+24
|\
| * do not add common ports to HTTP_HOSTMichael Grosser2015-08-062-1/+24
* | Fix documentation on ActionDispatch::RequestGabriel Sobrinho2015-08-061-1/+1
|/
* use a request object to access info from env in GetIpAaron Patterson2015-08-062-11/+19
* ask the request if we should show exceptionsAaron Patterson2015-08-063-4/+13
* ExceptionWrapper doesn't need to know about `env`Aaron Patterson2015-08-064-26/+22
* prevent string allocationsAaron Patterson2015-08-061-1/+1