Skip to content

Instantly share code, notes, and snippets.

@njonsson
Created September 6, 2010 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save njonsson/567234 to your computer and use it in GitHub Desktop.
Save njonsson/567234 to your computer and use it in GitHub Desktop.
require 'sinatra'
get '/all-good' do
[200, [['Set-Cookie', 'foo=bar; baz']], 'Hello World!']
end
get '/huh' do
[404, 'What?']
end
get '/hurl' do
[500, 'Barf!']
end
post '/give-it-to-me' do
redirect '/all-good'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment