Skip to content

Instantly share code, notes, and snippets.

@adamwiggins
Created April 9, 2011 19:20
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 adamwiggins/911691 to your computer and use it in GitHub Desktop.
Save adamwiggins/911691 to your computer and use it in GitHub Desktop.
source :gemcutter
gem 'sinatra', '1.2.1'
gem 'thin', '1.2.11'
GEM
remote: http://rubygems.org/
specs:
daemons (1.1.2)
eventmachine (0.12.10)
rack (1.2.2)
sinatra (1.2.1)
rack (~> 1.1)
tilt (>= 1.2.2, < 2.0)
thin (1.2.11)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
tilt (1.2.2)
PLATFORMS
ruby
DEPENDENCIES
sinatra (= 1.2.1)
thin (= 1.2.11)
web: bundle exec ruby web.rb -p $PORT
require 'sinatra'
get '/' do
'hello'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment