Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Missing require "active_support/executor" | Akira Matsuda | 2018-10-30 | 1 | -0/+1 |
| | |||||
* | Merge pull request #30100 from kirs/doc-reloader | Matthew Draper | 2017-11-17 | 1 | -0/+3 |
|\ | | | | | Document public hooks in AS::Reloader | ||||
| * | Document public hooks in AS::Reloader [ci skip] | Kir Shatrov | 2017-08-14 | 1 | -0/+3 |
| | | |||||
* | | [Active Support] require_relative => require | Akira Matsuda | 2017-10-21 | 1 | -1/+1 |
|/ | | | | This basically reverts 8da30ad6be34339124ba4cb4e36aea260dda12bc | ||||
* | [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment` | Koichi ITO | 2017-07-11 | 1 | -0/+1 |
| | |||||
* | Use frozen-string-literal in ActiveSupport | Kir Shatrov | 2017-07-09 | 1 | -0/+1 |
| | |||||
* | [Active Support] require => require_relative | Akira Matsuda | 2017-07-01 | 1 | -1/+1 |
| | |||||
* | Add option for class_attribute default (#29270) | David Heinemeier Hansson | 2017-05-29 | 1 | -5/+2 |
| | | | | | | | | | | | | * Allow a default value to be declared for class_attribute * Convert to using class_attribute default rather than explicit setter * Removed instance_accessor option by mistake * False is a valid default value * Documentation | ||||
* | applies new string literal convention in activesupport/lib | Xavier Noria | 2016-08-06 | 1 | -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 hooks | Matthew Draper | 2016-04-05 | 1 | -1/+7 |
| | | | | Also, make sure to call the +complete+ hooks if +run+ fails. | ||||
* | Prevent nested ExecutionWrapper calls even when using run! directly | Matthew Draper | 2016-03-04 | 1 | -3/+1 |
| | |||||
* | Fix `ActiveSupport::Reloader.check!` | Ryuta Kamizono | 2016-03-02 | 1 | -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 APIs | Matthew Draper | 2016-03-02 | 1 | -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. |