igorgue (owner)

Revisions

gist: 221902 Download_button fork
public
Public Clone URL: git://gist.github.com/221902.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
19
20
21
22
# post_hello.rb
require 'rubygems'
require 'sinatra'
 
before do
  @hi_msg = "HAI!"
  request.path_info = '/'
end
 
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_msg} #{params[:name]}"
end