class Delayed::Plugins::Reporting

Constants

VERSION

Public Class Methods

options() click to toggle source
# File lib/delayed-plugins-reporting.rb, line 29
def options
  @options ||= {}
end
options=(options) click to toggle source
# File lib/delayed-plugins-reporting.rb, line 25
def options=(options)
  @options = options
end
with_context() { |create(**options)| ... } click to toggle source
# File lib/delayed-plugins-reporting.rb, line 21
def with_context
  yield Context.create(**options)
end