Skip to content

Instantly share code, notes, and snippets.

@cookbooks
Created December 8, 2010 08:33
Show Gist options
  • Save cookbooks/733036 to your computer and use it in GitHub Desktop.
Save cookbooks/733036 to your computer and use it in GitHub Desktop.
Bundler Gemfile for Chef's Rails quick start example
# Useage:
# bundle install --gemfile /your/stack/library/rails-quick-start.gemfile \
# --install-path /your/chef-repo/cookbooks
#
gem "cc-apache2",
:git => "git://github.com/cookbooks/cc-apache2.git",
:branch => 'live'
gem "cc-application",
:git => "git://github.com/cookbooks/cc-application.git",
:branch => 'live'
gem "cc-unicorn",
:git => "git://github.com/cookbooks/cc-unicorn.git",
:branch => 'live'
gem "cc-passenger_enterprise",
:git => "git://github.com/cookbooks/cc-passenger_enterprise.git",
:branch => 'live'
gem "cc-passenger_apache2",
:git => "git://github.com/cookbooks/cc-passenger_apache2.git",
:branch => 'live'
gem "cc-ruby_enterprise",
:git => "git://github.com/cookbooks/cc-ruby_enterprise.git",
:branch => 'live'
gem "cc-runit",
:git => "git://github.com/cookbooks/cc-runit.git",
:branch => 'live'
gem "cc-build-essential",
:git => "git://github.com/cookbooks/cc-build-essential.git",
:branch => 'live'
gem "cc-apt",
:git => "git://github.com/cookbooks/cc-apt.git",
:branch => 'live'
gem "cc-aws",
:git => "git://github.com/cookbooks/cc-aws.git",
:branch => 'live'
gem "cc-database",
:git => "git://github.com/cookbooks/cc-database.git",
:branch => 'live'
gem "cc-git",
:git => "git://github.com/cookbooks/cc-git.git",
:branch => 'live'
gem "cc-haproxy",
:git => "git://github.com/cookbooks/cc-haproxy.git",
:branch => 'live'
gem "cc-mysql",
:git => "git://github.com/cookbooks/cc-mysql.git",
:branch => 'live'
gem "cc-nginx",
:git => "git://github.com/cookbooks/cc-nginx.git",
:branch => 'live'
gem "cc-openssl",
:git => "git://github.com/cookbooks/cc-openssl.git",
:branch => 'live'
gem "cc-packages",
:git => "git://github.com/cookbooks/cc-packages.git",
:branch => 'live'
gem "cc-radiant",
:git => "git://github.com/cookbooks/cc-radiant.git",
:branch => 'live'
gem "cc-rails",
:git => "git://github.com/cookbooks/cc-rails.git",
:branch => 'live'
gem "cc-ruby",
:git => "git://github.com/cookbooks/cc-ruby.git",
:branch => 'live'
gem "cc-rubygems",
:git => "git://github.com/cookbooks/cc-rubygems.git",
:branch => 'live'
gem "cc-sqlite",
:git => "git://github.com/cookbooks/cc-sqlite.git",
:branch => 'live'
gem "cc-xfs",
:git => "git://github.com/cookbooks/cc-xfs.git",
:branch => 'live'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment