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.
88 89 90 |
# File 'lib/workflow.rb', line 88 def initialize(name, = {}) @name, @events, @meta = name, Hash.new, end |
Instance Attribute Details
#events ⇒ Object
Returns the value of attribute events.
86 87 88 |
# File 'lib/workflow.rb', line 86 def events @events end |
#meta ⇒ Object
Returns the value of attribute meta.
86 87 88 |
# File 'lib/workflow.rb', line 86 def @meta end |
#name ⇒ Object
Returns the value of attribute name.
86 87 88 |
# File 'lib/workflow.rb', line 86 def name @name end |
#on_entry ⇒ Object
Returns the value of attribute on_entry.
86 87 88 |
# File 'lib/workflow.rb', line 86 def on_entry @on_entry end |
#on_exit ⇒ Object
Returns the value of attribute on_exit.
86 87 88 |
# File 'lib/workflow.rb', line 86 def on_exit @on_exit end |
Instance Method Details
#to_s ⇒ Object
92 93 94 |
# File 'lib/workflow.rb', line 92 def to_s "#{name}" end |
#to_sym ⇒ Object
96 97 98 |
# File 'lib/workflow.rb', line 96 def to_sym name.to_sym end |