Skip to content

Instantly share code, notes, and snippets.

@ku1ik
Created September 20, 2013 09:44
Show Gist options
  • Save ku1ik/6635291 to your computer and use it in GitHub Desktop.
Save ku1ik/6635291 to your computer and use it in GitHub Desktop.
require 'sinatra'
# /a/b/:/d matches
# /a%2fb/:/d matches
# /a/b/%3a/d doesn't match
get '/a/b/:/d' do
'yay 1'
end
# /e/f/:/h matches
# /e%2ff/:/h matches
# /e/f/%3a/h doesn't match
get %r{/e/f/:/h} do
'yay 2'
end
run Sinatra::Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment