Skip to content

Instantly share code, notes, and snippets.

@iamjwc
Created April 7, 2011 20:29
Show Gist options
  • Save iamjwc/908641 to your computer and use it in GitHub Desktop.
Save iamjwc/908641 to your computer and use it in GitHub Desktop.
Using url params in before filters
require 'sinatra'
before do
params[:thing] = params[:thing].uppercase
end
get '/:thing' do
"You said '#{params[:thing]}'"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment