Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [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 |
| | |||||
* | class Foo < Struct.new(:x) creates an extra unneeded anonymous class | Akira Matsuda | 2017-01-13 | 1 | -2/+2 |
| | | | | because Struct.new returns a Class, we just can give it a name and use it directly without inheriting from it | ||||
* | Avoid bumping the class serial when invoking executor | Matthew Draper | 2016-10-03 | 1 | -12/+21 |
| | |||||
* | 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 | -3/+42 |
| | | | | 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 | -6/+15 |
| | |||||
* | Publish AS::Executor and AS::Reloader APIs | Matthew Draper | 2016-03-02 | 1 | -0/+69 |
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. |