Skip to content

Instantly share code, notes, and snippets.

@soupmatt
Created May 24, 2011 16:31
Show Gist options
  • Save soupmatt/989067 to your computer and use it in GitHub Desktop.
Save soupmatt/989067 to your computer and use it in GitHub Desktop.
Passenger Rack::UrlMap Bug
require 'rack'
require 'rack/lobster'
use Rack::ShowExceptions
use Rack::CommonLogger
map '/fails' do
run Rack::Lobster.new
end
map 'http://localhost:3000/works' do
run Rack::Lobster.new
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment