Flowdock
method

new

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActiveModel::StateMachine::State
new(name, options = {}) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activemodel/lib/active_model/state_machine/state.rb, line 6
      def initialize(name, options = {})
        @name = name
        machine = options.delete(:machine)
        if machine
          machine.klass.send(:define_method, "#{name}?") do
            current_state.to_s == name.to_s
          end
        end
        update(options)
      end
Register or log in to add new notes.