Methods
A
C
D
E
F
G
N
O
T
Instance Public methods
about_me()
# File actionpack/test/controller/caching_test.rb, line 68
def about_me
  respond_to do |format|
    format.html {render :text => 'I am html'}
    format.xml {render :text => 'I am xml'}
  end
end
custom_path()
# File actionpack/test/controller/caching_test.rb, line 42
def custom_path
  render :text => "Super soaker"
  cache_page("Super soaker", "/index.html")
end
default_gzip()
# File actionpack/test/controller/caching_test.rb, line 47
def default_gzip
  render :text => "Text"
end
expire_custom_path()
# File actionpack/test/controller/caching_test.rb, line 59
def expire_custom_path
  expire_page("/index.html")
  head :ok
end
found()
# File actionpack/test/controller/caching_test.rb, line 34
def found
  redirect_to :action => 'ok'
end
gzip_level()
# File actionpack/test/controller/caching_test.rb, line 55
def gzip_level
  render :text => "Big text"
end
no_content()
# File actionpack/test/controller/caching_test.rb, line 30
def no_content
  head :no_content
end
no_gzip()
# File actionpack/test/controller/caching_test.rb, line 51
def no_gzip
  render :text => "PNG"
end
not_found()
# File actionpack/test/controller/caching_test.rb, line 38
def not_found
  head :not_found
end
ok()
# File actionpack/test/controller/caching_test.rb, line 26
def ok
  head :ok
end
trailing_slash()
# File actionpack/test/controller/caching_test.rb, line 64
def trailing_slash
  render :text => "Sneak attack"
end