Skip to content

Instantly share code, notes, and snippets.

@hone
Created March 14, 2011 21:57
Show Gist options
  • Save hone/869961 to your computer and use it in GitHub Desktop.
Save hone/869961 to your computer and use it in GitHub Desktop.
require 'bundler/setup'
require 'sinatra'
get '/' do
"Sinatra Bro"
end
get '/sleep' do
sleep 30
'Timeout'
end
get '/env' do
ENV['FOO']
end
run Sinatra::Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment