Class: Workflow::State
- Inherits:
-
Object
- Object
- Workflow::State
- Defined in:
- lib/workflow.rb
Instance Attribute Summary collapse
-
#events ⇒ Object
Returns the value of attribute events.
-
#meta ⇒ Object
Returns the value of attribute meta.
-
#name ⇒ Object
Returns the value of attribute name.
-
#on_entry ⇒ Object
Returns the value of attribute on_entry.
-
#on_exit ⇒ Object
Returns the value of attribute on_exit.
Instance Method Summary collapse
-
#initialize(name, meta = {}) ⇒ State
constructor
A new instance of State.
- #to_s ⇒ Object
- #to_sym ⇒ Object
Constructor Details
#initialize(name, meta = {}) ⇒ State
Returns a new instance of State.
74 75 76 |
# File 'lib/workflow.rb', line 74 def initialize(name, = {}) @name, @events, = name, Hash.new, end |
Instance Attribute Details
#events ⇒ Object
Returns the value of attribute events.
72 73 74 |
# File 'lib/workflow.rb', line 72 def events @events end |
#meta ⇒ Object
Returns the value of attribute meta.
72 73 74 |
# File 'lib/workflow.rb', line 72 def end |
#name ⇒ Object
Returns the value of attribute name.
72 73 74 |
# File 'lib/workflow.rb', line 72 def name @name end |
#on_entry ⇒ Object
Returns the value of attribute on_entry.
72 73 74 |
# File 'lib/workflow.rb', line 72 def on_entry @on_entry end |
#on_exit ⇒ Object
Returns the value of attribute on_exit.
72 73 74 |
# File 'lib/workflow.rb', line 72 def on_exit @on_exit end |
Instance Method Details
#to_s ⇒ Object
78 79 80 |
# File 'lib/workflow.rb', line 78 def to_s "#{name}" end |
#to_sym ⇒ Object
82 83 84 |
# File 'lib/workflow.rb', line 82 def to_sym name.to_sym end |