Methods
A
I
N
R
Instance Public methods
action_with_ivars()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 58
def action_with_ivars
  @my_ivar = "Hello"
  render "action_with_ivars.erb"
end
index()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 50
def index
  render "index.erb"
end
index_to_string()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 54
def index_to_string
  self.response_body = render_to_string "index"
end
naked_render()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 63
def naked_render
  render
end
rendering_to_body()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 67
def rendering_to_body
  self.response_body = render_to_body :template => "naked_render"
end
rendering_to_string()
# File actionview/test/actionpack/abstract/abstract_controller_test.rb, line 71
def rendering_to_string
  self.response_body = render_to_string :template => "naked_render"
end