Class: AASM::Core::State
- Inherits:
-
Object
- Object
- AASM::Core::State
- Defined in:
- lib/aasm/core/state.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#state_machine ⇒ Object
readonly
Returns the value of attribute state_machine.
Instance Method Summary collapse
- #<=>(state) ⇒ Object
- #==(state) ⇒ Object
- #display_name ⇒ Object
- #fire_callbacks(action, record, *args) ⇒ Object
- #for_select ⇒ Object
-
#initialize(name, klass, state_machine, options = {}) ⇒ State
constructor
A new instance of State.
-
#initialize_copy(orig) ⇒ Object
called internally by Ruby 1.9 after clone().
- #localized_name ⇒ Object (also: #human_name)
- #to_s ⇒ Object
Constructor Details
#initialize(name, klass, state_machine, options = {}) ⇒ State
Returns a new instance of State.
7 8 9 10 11 12 |
# File 'lib/aasm/core/state.rb', line 7 def initialize(name, klass, state_machine, ={}) @name = name @klass = klass @state_machine = state_machine update() end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/aasm/core/state.rb', line 5 def name @name end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/aasm/core/state.rb', line 5 def end |
#state_machine ⇒ Object (readonly)
Returns the value of attribute state_machine.
5 6 7 |
# File 'lib/aasm/core/state.rb', line 5 def state_machine @state_machine end |
Instance Method Details
#<=>(state) ⇒ Object
35 36 37 38 39 40 41 |
# File 'lib/aasm/core/state.rb', line 35 def <=>(state) if state.is_a? Symbol name <=> state else name <=> state.name end end |
#==(state) ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/aasm/core/state.rb', line 27 def ==(state) if state.is_a? Symbol name == state else name == state.name end end |
#display_name ⇒ Object
56 57 58 59 60 61 62 63 64 |
# File 'lib/aasm/core/state.rb', line 56 def display_name @display_name ||= begin if Module.const_defined?(:I18n) localized_name else name.to_s.gsub(/_/, ' ').capitalize end end end |
#fire_callbacks(action, record, *args) ⇒ Object
47 48 49 50 51 52 53 54 |
# File 'lib/aasm/core/state.rb', line 47 def fire_callbacks(action, record, *args) action = [action] catch :halt_aasm_chain do action.is_a?(Array) ? action.each {|a| _fire_callbacks(a, record, args)} : _fire_callbacks(action, record, args) end end |
#for_select ⇒ Object
71 72 73 |
# File 'lib/aasm/core/state.rb', line 71 def for_select [display_name, name.to_s] end |
#initialize_copy(orig) ⇒ Object
called internally by Ruby 1.9 after clone()
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/aasm/core/state.rb', line 15 def initialize_copy(orig) super = {} orig..each_pair do |name, setting| [name] = if setting.is_a?(Hash) || setting.is_a?(Array) setting.dup else setting end end end |
#localized_name ⇒ Object Also known as: human_name
66 67 68 |
# File 'lib/aasm/core/state.rb', line 66 def localized_name AASM::Localizer.new.human_state_name(@klass, self) end |
#to_s ⇒ Object
43 44 45 |
# File 'lib/aasm/core/state.rb', line 43 def to_s name.to_s end |