Methods
I
O
Instance Public methods
index()
# File actionview/test/actionpack/abstract/layouts_test.rb, line 38
def index
  render :template => ActionView::Template::Text.new("Hello string!")
end
overwrite_default()
# File actionview/test/actionpack/abstract/layouts_test.rb, line 42
def overwrite_default
  render :template => ActionView::Template::Text.new("Hello string!"), :layout => :default
end
overwrite_false()
# File actionview/test/actionpack/abstract/layouts_test.rb, line 46
def overwrite_false
  render :template => ActionView::Template::Text.new("Hello string!"), :layout => false
end
overwrite_skip()
# File actionview/test/actionpack/abstract/layouts_test.rb, line 54
def overwrite_skip
  render :text => "Hello text!"
end
overwrite_string()
# File actionview/test/actionpack/abstract/layouts_test.rb, line 50
def overwrite_string
  render :template => ActionView::Template::Text.new("Hello string!"), :layout => "overwrite"
end