igorgue (owner)

Revisions

gist: 220852 Download_button fork
public
Public Clone URL: git://gist.github.com/220852.git
Embed All Files: show embed
post_hello.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# post_hello.rb
require 'rubygems'
require 'sinatra'
 
get '/' do
  <<-form
<h1>Name to say hi!</h1>
<form method="post">
<input type="text" name="name">
<input type="submit" value="send">
</form>
form
end
 
post '/' do
  "Hi #{params[:name]}"
end