Sha256: e2d74f2619185d9e5f6fd3231f1661f8bb34100ecc82f2e8d017c7eb6c0fd1f6
Contents?: true
Size: 941 Bytes
Versions: 128
Compression:
Stored size: 941 Bytes
Contents
<html> <head> <title>Sample Rack::Cache Sinatra app</title> <style type="text/css" media="screen"> body { font-family: Georgia; font-size: 24px; text-align: center; } #headers { font-size: 16px; } input { font-size: 24px; cursor: pointer; } </style> </head> <body> <h1>Last updated at: <%= $updated_at.strftime('%l:%m:%S%P') %></h1> <p> <form action="/" method="post"> <input type="hidden" name="_method" value="PUT"> <input type="submit" value="Expire the cache."> </form> </p> <div id="headers"> <h3>Headers:</h3> <% response.headers.each do |key, value| %> <p><%= key %>: <%= value %></p> <% end %> <h3>Params:</h3> <% params.each do |key, value| %> <p><%= key %>: <%= value || '(blank)' %></p> <% end %> </div> </body> </html>
Version data entries
128 entries across 104 versions & 23 rubygems