Sha256: dcecb34ecd1557fe8d76149c9d3bfa2ac276cd8d080a574581bc1a0b8ee5bfc0
Contents?: true
Size: 332 Bytes
Versions: 14
Compression:
Stored size: 332 Bytes
Contents
# frozen_string_literal: true module Nuntius # This is the default runner used for runners in Nuntius, you can insert your # own in the Nuntius configuration in your Rails Nuntius initializer. class BasicApplicationRunner def call perform end class << self delegate :call, to: :new end end end
Version data entries
14 entries across 14 versions & 1 rubygems