Created
May 24, 2011 16:31
-
-
Save soupmatt/989067 to your computer and use it in GitHub Desktop.
Passenger Rack::UrlMap Bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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