Methods
A
F
I
S
Instance Public methods
aroundz()
# File actionpack/test/abstract/callbacks_test.rb, line 284
def aroundz
  @aroundz = "FIRST"
  yield
  @aroundz << "SECOND"
end
first()
# File actionpack/test/abstract/callbacks_test.rb, line 276
def first
  @text = "Hello world"
end
index()
# File actionpack/test/abstract/callbacks_test.rb, line 290
def index
  @text ||= nil
  self.response_body = @text.to_s
end
second()
# File actionpack/test/abstract/callbacks_test.rb, line 280
def second
  @second = "Goodbye"
end