Pretty simple Sinatra code
get '/Accept/:value' do
"Hello world"
end
not_found do
"not found"
end
when I go to http://localhost:9292/Accept/?SomeKey=somevalue&Somekey2=someValue Sinatra always returns "not found" back to me.
What am I doing wrong?
SomeKey=somevalue&Somekey2=someValueit will be present in theparamsif not wrong do only/Accepts/instead of/Accept/:value– Viren Nov 6 '12 at 7:58