A rack middleware for compressing of two or more adjacent slashes in a URI into a single slash.
Usage
Rails
Just add the gem to your gemfile and run bundle
gem 'rack-slash_merger'
Then restart your Rails server. No configuration is needed. The gem simply hooks itself into the Rack middleware call stack.
Other rack-based application
In your Gemfile add the gem
gem 'rack-slash_merger'
Add middleware to stack:
# config.ru
require 'rack/slash_merger'
use Rack::SlashMerger
License
MIT License. Copyright 2015 Adrian Lehmann