Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created November 13, 2009 08:34
Show Gist options
  • Select an option

  • Save jpoz/233679 to your computer and use it in GitHub Desktop.

Select an option

Save jpoz/233679 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
get '/' do
"Portland: #{Thread.current[:portland]}"
end
get '/portland' do
Thread.current[:portland] = "is awesome"
redirect '/'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment