Sha256: 5c79f67f95bf6f59111290353fb34ea0a5d6628cc24f44241b35534c6d44daa8
Contents?: true
Size: 414 Bytes
Versions: 14
Compression:
Stored size: 414 Bytes
Contents
class SimpleNoBrainer include NoBrainer::Document include AASM field :status, type: String aasm column: :status do state :unknown_scope, :another_unknown_scope state :new end end class SimpleNoBrainerMultiple include NoBrainer::Document include AASM field :status, type: String aasm :left, column: :status do state :unknown_scope, :another_unknown_scope state :new end end
Version data entries
14 entries across 14 versions & 1 rubygems