Sha256: 3396d3c51eee29d93b4c21936fd0d9d65dc80c46fb536df2ff182db572b00608
Contents?: true
Size: 349 Bytes
Versions: 18
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true # Import Statesman class ImportStateMachine include Statesman::Machine state :created, initial: true state :mapped state :imported state :success state :failed transition from: :created, to: [:mapped] transition from: :mapped, to: [:imported] transition from: :imported, to: %i[success failed] end
Version data entries
18 entries across 18 versions & 1 rubygems