Skip to content

Instantly share code, notes, and snippets.

@bomberstudios
Created September 29, 2008 10:07
Show Gist options
  • Save bomberstudios/13581 to your computer and use it in GitHub Desktop.
Save bomberstudios/13581 to your computer and use it in GitHub Desktop.
the simplest sinatra app
# Sinatra sample app.
#
# Usage:
# $ sudo gem install sinatra
# $ ruby this_file.rb
# $ open http://0.0.0.0:4567/
require "rubygems"
require "sinatra"
get '/' do
"Hello world."
end
get '/about' do
"I'm running on Sinatra v" + Sinatra::VERSION
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment