Skip to content

Instantly share code, notes, and snippets.

@chills42
Created June 4, 2014 17:32
Show Gist options
  • Save chills42/e049f254622a7279faf0 to your computer and use it in GitHub Desktop.
Save chills42/e049f254622a7279faf0 to your computer and use it in GitHub Desktop.
Forward slash URI unescaping
require 'sinatra'
# I would expect '/ab' to respond with 'false'
# I also expect '/a%2Fb' to respond with 'true'
# Neither option should 404
get '/:value' do |value|
(value=='a/b').to_s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment