Skip to content

Instantly share code, notes, and snippets.

@cmc333333
Created February 12, 2015 15:25
Show Gist options
  • Save cmc333333/d3ade03907f259b1858e to your computer and use it in GitHub Desktop.
Save cmc333333/d3ade03907f259b1858e to your computer and use it in GitHub Desktop.
State machines
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