aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/reloader.rb
Commit message (Collapse)AuthorAgeFilesLines
* applies new string literal convention in activesupport/libXavier Noria2016-08-061-1/+1
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Directly support stateful executor hooksMatthew Draper2016-04-051-1/+7
| | | | Also, make sure to call the +complete+ hooks if +run+ fails.
* Prevent nested ExecutionWrapper calls even when using run! directlyMatthew Draper2016-03-041-3/+1
|
* Fix `ActiveSupport::Reloader.check!`Ryuta Kamizono2016-03-021-4/+3
| | | | | The test failure in `bug_report_templates/action_controller_master.rb` is due to `app.reloader.check` is `nil`.
* Publish AS::Executor and AS::Reloader APIsMatthew Draper2016-03-021-0/+126
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.