Methods
#
D
F
I
S
T
Included Modules
Instance Public methods
_prefixes()
# File actionview/test/actionpack/abstract/render_test.rb, line 10
def _prefixes
  %w[renderer]
end
default()
# File actionview/test/actionpack/abstract/render_test.rb, line 39
def default
  render
end
file()
# File actionview/test/actionpack/abstract/render_test.rb, line 27
def file
  render :file => "some/file"
end
inline()
# File actionview/test/actionpack/abstract/render_test.rb, line 31
def inline
  render :inline => "With <%= :Inline %>"
end
string()
# File actionview/test/actionpack/abstract/render_test.rb, line 43
def string
  render "string"
end
string_with_path()
# File actionview/test/actionpack/abstract/render_test.rb, line 47
def string_with_path
  render "string/with_path"
end
symbol()
# File actionview/test/actionpack/abstract/render_test.rb, line 51
def symbol
  render :symbol
end
template()
# File actionview/test/actionpack/abstract/render_test.rb, line 23
def template
  render :template => "template"
end
text()
# File actionview/test/actionpack/abstract/render_test.rb, line 35
def text
  render plain: "With Text"
end