Module: ActsAsWizard::ClassMethods
- Defined in:
- app/models/concerns/acts_as_wizard.rb
Instance Method Summary collapse
Instance Method Details
#acts_as_wizard? ⇒ Boolean
165 |
# File 'app/models/concerns/acts_as_wizard.rb', line 165 def acts_as_wizard?; true; end |
#all_wizard_steps ⇒ Object
171 172 173 |
# File 'app/models/concerns/acts_as_wizard.rb', line 171 def all_wizard_steps const_get(:WIZARD_STEPS).keys end |
#wizard_steps_hash ⇒ Object
167 168 169 |
# File 'app/models/concerns/acts_as_wizard.rb', line 167 def wizard_steps_hash const_get(:WIZARD_STEPS) end |