Skip to content

Instantly share code, notes, and snippets.

@stouset
Created February 26, 2010 21:28
Show Gist options
  • Save stouset/316180 to your computer and use it in GitHub Desktop.
Save stouset/316180 to your computer and use it in GitHub Desktop.
source :gemcutter
git 'git@github.com:emcien/emcien-engine.git'
git 'git://github.com/rack/rack-contrib.git'
git 'git://github.com/sinatra/sinatra.git', :ref => '1.0.a'
gem 'emcien-engine',
:require => 'emcien/engine'
gem 'couchrest'
gem 'rack'
gem 'rack-contrib', :require => 'rack/contrib'
gem 'sinatra', '= 1.0.a'
gem 'uuid'
gem 'json' # dependency of couchrest
group :development do
gem 'rack-debug', :require => 'rack/debug'
end
group :production do
gem 'rack-cache', :require => 'rack/cache'
gem 'memcached'
end
group :console do
gem 'hirb'
gem 'wirble'
end
group :script do
gem 'trollop'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment