Skip to content

Instantly share code, notes, and snippets.

@cypher
Created October 23, 2009 11:17
Show Gist options
  • Save cypher/216815 to your computer and use it in GitHub Desktop.
Save cypher/216815 to your computer and use it in GitHub Desktop.
require 'sinatra'
class App < Sinatra::Base
get '' do
request.script_name
end
end
map '/foo' do
run App
end
# GET '/foo' => '/foo'
map '/bar' do
run App
end
# GET '/bar' => '/bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment