Class: Workflow::State

Inherits:
Object
  • Object
show all
Defined in:
lib/workflow.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, meta = {}) ⇒ State

Returns a new instance of State.



93
94
95
# File 'lib/workflow.rb', line 93

def initialize(name, meta = {})
  @name, @events, @meta = name, Hash.new, meta
end

Instance Attribute Details

#eventsObject

Returns the value of attribute events.



91
92
93
# File 'lib/workflow.rb', line 91

def events
  @events
end

#metaObject

Returns the value of attribute meta.



91
92
93
# File 'lib/workflow.rb', line 91

def meta
  @meta
end

#nameObject

Returns the value of attribute name.



91
92
93
# File 'lib/workflow.rb', line 91

def name
  @name
end

#on_entryObject

Returns the value of attribute on_entry.



91
92
93
# File 'lib/workflow.rb', line 91

def on_entry
  @on_entry
end

#on_exitObject

Returns the value of attribute on_exit.



91
92
93
# File 'lib/workflow.rb', line 91

def on_exit
  @on_exit
end

Instance Method Details

#to_sObject



97
98
99
# File 'lib/workflow.rb', line 97

def to_s
  "#{name}"
end

#to_symObject



101
102
103
# File 'lib/workflow.rb', line 101

def to_sym
  name.to_sym
end