Class: Workflow::Specification
- Inherits:
-
Object
- Object
- Workflow::Specification
- Defined in:
- lib/workflow.rb
Instance Attribute Summary collapse
-
#initial_state ⇒ Object
Returns the value of attribute initial_state.
-
#meta ⇒ Object
Returns the value of attribute meta.
-
#on_transition_proc ⇒ Object
Returns the value of attribute on_transition_proc.
-
#states ⇒ Object
Returns the value of attribute states.
Instance Method Summary collapse
-
#initialize(meta = {}, &specification) ⇒ Specification
constructor
A new instance of Specification.
- #state_names ⇒ Object
Constructor Details
#initialize(meta = {}, &specification) ⇒ Specification
Returns a new instance of Specification.
10 11 12 13 14 |
# File 'lib/workflow.rb', line 10 def initialize( = {}, &specification) @states = Hash.new @meta = instance_eval(&specification) end |
Instance Attribute Details
#initial_state ⇒ Object
Returns the value of attribute initial_state.
8 9 10 |
# File 'lib/workflow.rb', line 8 def initial_state @initial_state end |
#meta ⇒ Object
Returns the value of attribute meta.
8 9 10 |
# File 'lib/workflow.rb', line 8 def @meta end |
#on_transition_proc ⇒ Object
Returns the value of attribute on_transition_proc.
8 9 10 |
# File 'lib/workflow.rb', line 8 def on_transition_proc @on_transition_proc end |
#states ⇒ Object
Returns the value of attribute states.
8 9 10 |
# File 'lib/workflow.rb', line 8 def states @states end |
Instance Method Details
#state_names ⇒ Object
16 17 18 |
# File 'lib/workflow.rb', line 16 def state_names states.keys end |