Skip to content

Instantly share code, notes, and snippets.

@vangberg
Created March 15, 2009 03:39
Show Gist options
  • Save vangberg/79294 to your computer and use it in GitHub Desktop.
Save vangberg/79294 to your computer and use it in GitHub Desktop.
require 'sinatra'
enable :sessions
post '/counter' do
(session[:counter] ||= 0) += 1
end
get '/' do
"You've hit me #{session[:counter]} times!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment