Skip to content

Instantly share code, notes, and snippets.

@scottwater
Created October 2, 2010 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottwater/607816 to your computer and use it in GitHub Desktop.
Save scottwater/607816 to your computer and use it in GitHub Desktop.
require 'sinatra'
get '/' do
"Hello From Sinatra"
end
require 'bundler'
Bundler.setup
require 'app'
run Sinatra::Application
source :gemcutter
gem 'sinatra', '1.1.0', :git => 'http://github.com/sinatra/sinatra.git'
gem 'RedCloth', '4.2.3'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment