Sha256: ae41446e470c71f77abf72784bd7d6ea6fe853ac23b892c65a82d6865082fca9
Contents?: true
Size: 394 Bytes
Versions: 31
Compression:
Stored size: 394 Bytes
Contents
class EventExportFileStateMachine include Statesman::Machine state :pending, initial: true state :started state :completed state :failed transition from: :pending, to: :started transition from: :started, to: [:completed, :failed] after_transition(from: :pending, to: :started) do |event_export_file| event_export_file.update_column(:executed_at, Time.zone.now) end end
Version data entries
31 entries across 31 versions & 1 rubygems