pass
:
get '/guess/:who' do pass unless params[:who] == 'Frank' 'You got me!' end get '/guess/*' do 'You missed!' endThe route block is immediately exited and control continues with the next matching route.
If no matching route is found, a 404 is returned.