aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/stack.rb
Commit message (Expand)AuthorAgeFilesLines
* Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-131-1/+0
* Only build middleware proxy when instrumentatingJohn Hawthorn2019-05-081-2/+13
* Instrument middleware processingDaniel Schierbeck2019-03-191-1/+22
* ActionPack Proc.new without a blockutilum2019-02-131-2/+2
* Use frozen string literal in actionpack/Kir Shatrov2017-07-291-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* Remove deprecated support to passing strings to the middleware stackRafael Mendonça França2016-10-101-20/+1
* Fix broken heredoc indentation caused by rubocop auto-correctRyuta Kamizono2016-09-031-1/+1
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-18/+18
* Add #== back to ActionDispatch::MiddlewareStack::MiddlewareJon Moss2015-12-211-0/+9
* Show middleware classes on /rails/info/propertiesclaudiob2015-11-111-1/+5
* Make `assert_index` privateMarcin Olichwirowicz2015-08-251-3/+1
* finish deprecating handling strings and symbolsAaron Patterson2015-08-071-19/+4
* Using strings or symbols for middleware class names is deprecated.Aaron Patterson2015-08-071-18/+25
* simplify the Middleware constructorAaron Patterson2015-08-071-10/+13
* use Proc.new to reduce some conditionalsAaron Patterson2015-08-071-3/+1
* Add the #unshift method to the middleware stackRich Healey2012-05-181-0/+5
* Freeze the middleware stack after it's builtJeremy Kemper2012-04-201-1/+1
* Fix GH #4873. Allow swapping middleware of same classkennyj2012-02-041-2/+3
* make sure string keys are always looked up from the class cacheAaron Patterson2011-03-021-2/+3
* yo dawg, directly use the class cache rather than the cache of the cacheAaron Patterson2011-03-011-1/+2
* refactor Reference to a ClassCache object, fix lazy lookup in Middleware so t...Aaron Patterson2011-03-011-3/+10
* Enumerable gives us include?, so remove include?Aaron Patterson2011-03-011-4/+0
* prefer composition over inheritance with AD::MSAaron Patterson2011-03-011-8/+37
* Avoid (@_var ||= nil) pattern by using initialize methods and ensuring everyo...José Valim2010-09-291-0/+4
* No need to call super here. Use yield instead block.callEmilio Tagua2010-09-281-3/+2
* Cleanup deprecations in Action DispatchCarlos Antonio da Silva2010-09-061-5/+0
* require 'active_support/dependencies' in action_dispatch/middleware/stackPiotr Sarnacki2010-09-031-0/+1
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-1/+1
* Ensure insert_before in middleware stack raises a meaningful error message [#...José Valim2010-07-211-4/+11
* Fix a bunch of minor spelling mistakesEvgeniy Dolzhenko2010-06-111-1/+1
* Simplify middleware stack lazy compares using named const referencesJeremy Kemper2010-06-051-13/+5
* Add :only and :except to controllers MiddlewareStack. This allowsJosé Valim2010-05-301-4/+4
* Remove the laziness from the middleware stack.José Valim2010-05-291-57/+15
* Simplify the action endpoint:Carlhuda2010-03-081-1/+5
* Make many parts of Rails lazy. In order to facilitate this,wycats2010-03-071-1/+1
* As first step setup the load path and lazy compare middlewares.José Valim2010-01-251-1/+13
* Cleanup middleware introspection outputJoshua Peek2010-01-191-3/+1
* Complain if there's no such middlewareJeremy Kemper2009-12-281-2/+3
* Break up inflector to reduce the dependency burden on dependency-les methods ...Yehuda Katz2009-11-071-2/+4
* Rework Middleware stack to match the Rack middleware protocol more closelyYehuda Katz + Carl Lerche2009-08-251-3/+3
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-111-2/+1
|\
| * Show lazy middleware args in pretty printJoshua Peek2009-05-031-2/+1
* | Renamed Base2 to Base and don't require old action_controller for new BaseYehuda Katz + Carl Lerche2009-05-011-2/+0
|/
* Move middleware stack out of utils folderJoshua Peek2009-04-141-0/+119