Skip to content

Instantly share code, notes, and snippets.

@lukesteensen
Created December 10, 2012 00:11
Show Gist options
  • Save lukesteensen/4247613 to your computer and use it in GitHub Desktop.
Save lukesteensen/4247613 to your computer and use it in GitHub Desktop.
Dummy Sinatra app
require 'sinatra/base'
class SampleApp < Sinatra::Base
get '/' do
sleep 0.2
"hello world\n\n"
end
end
run SampleApp.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment