bmizerany (owner)

Revisions

gist: 102219 Download_button fork
public
Public Clone URL: git://gist.github.com/102219.git
Embed All Files: show embed
config.ru #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'sinatra'
 
class ESI < Sinatra::Default
 
  get '/' do
    erb(<<-ERB)
<html>
<body>
<p><esi:include src="/p"/></p>
<p><%= Time.now.to_s %></p>
</body>
</html>
ERB
  end
 
  get '/p' do
    headers['Cache-Control'] = 'public, max-age=300'
    Time.now.to_s
  end
 
end
 
run ESI