Skip to content

Instantly share code, notes, and snippets.

@mortenbagai
Created June 29, 2009 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mortenbagai/137810 to your computer and use it in GitHub Desktop.
Save mortenbagai/137810 to your computer and use it in GitHub Desktop.
post '/press' do
digits = params[:digits]
if digits != "1"
redirect '/'
end
content_type 'text/xml', :charset => 'utf-8'
builder do |xml|
xml.instruct!
xml.Response do
xml.Say("You pressed #{digits}")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment