Methods
N
S
Class Public methods
new(action_name, state)
# File activesupport/test/callback_inheritance_test.rb, line 52
def initialize(action_name, state)
  super(action_name)
  @state = state
end
Instance Public methods
state_open?()
# File activesupport/test/callback_inheritance_test.rb, line 48
def state_open?
  @state == :open
end