mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d3c9d808e3
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.
6 lines
111 B
Ruby
6 lines
111 B
Ruby
require 'active_support/execution_wrapper'
|
|
|
|
module ActiveSupport
|
|
class Executor < ExecutionWrapper
|
|
end
|
|
end
|