aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/reloader.rb
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* Remove deprecated callbacks from ActionDispatch middlewaresRafael Mendonça França2017-01-311-47/+3
|
* applies new string literal convention in actionpack/libXavier Noria2016-08-061-4/+4
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Don't reference Rails.application from inside a componentMatthew Draper2016-03-021-10/+6
|
* Publish AS::Executor and AS::Reloader APIsMatthew Draper2016-03-021-56/+18
| | | | | | These should allow external code to run blocks of user code to do "work", at a similar unit size to a web request, without needing to get intimate with ActionDipatch.
* Delete needless `require 'active_support/deprecation'`yui-knk2015-10-201-2/+0
| | | | | When `require 'active_support/rails'`, 'active_support/deprecation' is automatically loaded.
* Use ruby 1.9 lambda syntax in documentations [ci skip]Mehmet Emin İNAÇ2015-05-031-2/+2
|
* always use a block for cleanup / prepare callbacks so we can clean the ↵Aaron Patterson2014-01-281-0/+9
| | | | method signature
* scope is not necessaryAaron Patterson2014-01-281-2/+2
|
* Code-format references to config settingsMark Rushakoff2012-04-271-1/+1
|
* More using <tt>x</tt> instead of +x+ when the latter renders improperly.Mark Rushakoff2012-04-271-2/+2
|
* use Rack::BodyProxy in AD::ReloaderSergey Nartimov2012-01-161-3/+3
|
* Use a BodyProxy instead of including a Module that responds to close.Santiago Pastorino2012-01-131-14/+3
| | | | Closes #4441 if Active Record is disabled assets are delivered correctly
* Allow reloader to be configured.José Valim2011-12-121-14/+38
|
* Use run_callbacks; the generated _run_<name>_callbacks method is not a ↵John Firebaugh2011-01-311-4/+4
| | | | | | public interface. Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Clean up callbacks should also be called on exceptions.José Valim2010-12-231-0/+3
|
* Typo (request -> response)John Firebaugh2010-12-211-1/+1
|
* Expand ActionDispatch::Reloader docsJohn Firebaugh2010-12-211-6/+14
|
* Small changes on AD::Reloader.José Valim2010-12-201-20/+3
|
* Introduce ActionDispatch::ReloaderJohn Firebaugh2010-12-201-0/+82
| | | | | | | | | | | | Based on the implementation on the 2-3-stable branch, patches by Hongli Lai <hongli@phusion.nl>, and helpful suggestions from José Valim. Hongli Lai's patches included locking around the request cycle; this is now handled by Rack::Lock (https://github.com/rack/rack/issues/issue/87/). [#2873] Signed-off-by: José Valim <jose.valim@gmail.com>
* Wrap dispatcher callbacks around the whole middleware chain. Kill ↵Joshua Peek2009-05-031-14/+0
| | | | unnecessary Reloader middleware.
* Move reloader middleware in ActionDispatchJoshua Peek2009-04-141-0/+14