Class: Workflow::Specification

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta = {}, &specification) ⇒ Specification

Returns a new instance of Specification.



13
14
15
16
17
# File 'lib/workflow/specification.rb', line 13

def initialize(meta = {}, &specification)
  @states = Hash.new
  @meta = meta
  instance_eval(&specification)
end

Instance Attribute Details

#after_transition_procObject

Returns the value of attribute after_transition_proc.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def after_transition_proc
  @after_transition_proc
end

#before_transition_procObject

Returns the value of attribute before_transition_proc.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def before_transition_proc
  @before_transition_proc
end

#initial_stateObject

Returns the value of attribute initial_state.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def initial_state
  @initial_state
end

#metaObject

Returns the value of attribute meta.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def meta
  @meta
end

#on_error_procObject

Returns the value of attribute on_error_proc.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def on_error_proc
  @on_error_proc
end

#on_transition_procObject

Returns the value of attribute on_transition_proc.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def on_transition_proc
  @on_transition_proc
end

#on_unavailable_transition_procObject

Returns the value of attribute on_unavailable_transition_proc.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def on_unavailable_transition_proc
  @on_unavailable_transition_proc
end

#statesObject

Returns the value of attribute states.



9
10
11
# File 'lib/workflow/specification.rb', line 9

def states
  @states
end

Instance Method Details

#state_namesObject



19
20
21
# File 'lib/workflow/specification.rb', line 19

def state_names
  states.keys
end