Sha256: 89ec08e6ec3dd6d7a81a0e933133d12fb5300e5d4e8ab95093a2fcd9d87c68bf
Contents?: true
Size: 532 Bytes
Versions: 32
Compression:
Stored size: 532 Bytes
Contents
class NoDirectAssignment < ActiveRecord::Base include AASM aasm :no_direct_assignment => true do state :pending, :initial => true state :running event :run do transitions :from => :pending, :to => :running end end end class MultipleNoDirectAssignment < ActiveRecord::Base include AASM aasm :left, :column => :aasm_state, :no_direct_assignment => true do state :pending, :initial => true state :running event :run do transitions :from => :pending, :to => :running end end end
Version data entries
32 entries across 32 versions & 1 rubygems