Skip to content

Instantly share code, notes, and snippets.

@bmizerany
Created January 20, 2009 22:04
Show Gist options
  • Select an option

  • Save bmizerany/49693 to your computer and use it in GitHub Desktop.

Select an option

Save bmizerany/49693 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'sinatra'
class Bar < Sinatra::Base
get "/" do
"Hello world!"
end
end
map "/foo" do
run Bar
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment