Skip to content

Instantly share code, notes, and snippets.

@jtslear
Created May 29, 2015 03:28
Show Gist options
  • Save jtslear/055486fd91d82372dee8 to your computer and use it in GitHub Desktop.
Save jtslear/055486fd91d82372dee8 to your computer and use it in GitHub Desktop.
test-web-app.rb
require 'sinatra'
set :port, ARGV[1]
get '/something1/something2/get' do
"reached via something1/something2/get"
end
get '/replaced/get' do
"reached via replaced/get"
end
get '*' do
"fuck if I know"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment