Methods
A
I
N
R
Instance Public methods
action_with_ivars()
# File actionpack/test/abstract/abstract_controller_test.rb, line 56
def action_with_ivars
  @my_ivar = "Hello"
  render "action_with_ivars.erb"
end
index()
# File actionpack/test/abstract/abstract_controller_test.rb, line 48
def index
  render "index.erb"
end
index_to_string()
# File actionpack/test/abstract/abstract_controller_test.rb, line 52
def index_to_string
  self.response_body = render_to_string "index"
end
naked_render()
# File actionpack/test/abstract/abstract_controller_test.rb, line 61
def naked_render
  render
end
rendering_to_body()
# File actionpack/test/abstract/abstract_controller_test.rb, line 65
def rendering_to_body
  self.response_body = render_to_body :template => "naked_render"
end
rendering_to_string()
# File actionpack/test/abstract/abstract_controller_test.rb, line 69
def rendering_to_string
  self.response_body = render_to_string :template => "naked_render"
end