mortenbagai (owner)

Forks

Revisions

  • d673ce Mon Jun 29 14:05:35 -0700 2009
gist: 137810 Download_button fork
public
Public Clone URL: git://gist.github.com/137810.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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