Module: AASM

Defined in:
lib/aasm.rb,
lib/state.rb,
lib/persistence.rb,
lib/state_machine.rb,
lib/state_transition.rb,
lib/persistence/active_record_persistence.rb

Defined Under Namespace

Modules: ClassMethods, Persistence, SupportingClasses Classes: InvalidTransition, StateMachine

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc:



14
15
16
17
18
19
20
21
# File 'lib/aasm.rb', line 14

def self.included(base) #:nodoc:
  # TODO - need to ensure that a machine is being created because
  # AASM was either included or arrived at via inheritance.  It
  # cannot be both.
  base.extend AASM::ClassMethods
  AASM::Persistence.set_persistence(base)
  AASM::StateMachine[base] = AASM::StateMachine.new('')
end

.VersionObject



7
8
9
# File 'lib/aasm.rb', line 7

def self.Version
  '0.0.2'
end

Instance Method Details

#aasm_current_stateObject

Instance methods



82
83
84
85
86
87
88
89
90
# File 'lib/aasm.rb', line 82

def aasm_current_state
  return @aasm_current_state if @aasm_current_state

  if self.respond_to?(:aasm_read_state) || self.private_methods.include?('aasm_read_state')
    @aasm_current_state = aasm_read_state
  end
  return @aasm_current_state if @aasm_current_state
  self.class.aasm_initial_state
end

#aasm_events_for_current_stateObject



92
93
94
# File 'lib/aasm.rb', line 92

def aasm_events_for_current_state
  aasm_events_for_state(aasm_current_state)
end

#aasm_events_for_state(state) ⇒ Object



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

def aasm_events_for_state(state)
  events = self.class.aasm_events.values.select {|event| event.transitions_from_state?(state) }
  events.map {|event| event.name}
end