Created
February 12, 2015 15:25
-
-
Save cmc333333/d3ade03907f259b1858e to your computer and use it in GitHub Desktop.
State machines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module WorkflowHelper | |
class ThreeStateWorkflow | |
include Workflow | |
workflow do | |
state :pending | |
state :accepted | |
state :rejected | |
end | |
end | |
class NCRWorfklow | |
workflow do | |
state :pending_first | |
state :pending_budget | |
state :pending_finance | |
state :accepted | |
state :rejected | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment