Skip to content

Instantly share code, notes, and snippets.

@mayfer
Created July 13, 2015 17:58
Show Gist options
  • Save mayfer/24dfc1b820f14cc926d8 to your computer and use it in GitHub Desktop.
Save mayfer/24dfc1b820f14cc926d8 to your computer and use it in GitHub Desktop.
Intro to HTTP
require 'sinatra'
get '/' do
# whatever happens here happens on every request
puts "goodbye world"
response = "hello #{params[:username]} \n\n \
<form method='post'>
<input type='text' name='absolutely_nothing' placeholder='type something' />
<input type='submit' value='Submit' />
</form>"
response
end
post '/' do
params.to_s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment