Consider the following snippet:
get '/hello/:name' do |n|
"Hello #{n}!"
end
How can I set a default parameters if name isn't specified? If I can set the default paramater to Tom will this also route the URL so /hello/ will automatically redirect to /hello/tom?