Skip to content

Instantly share code, notes, and snippets.

@marcbowes
Created May 10, 2011 19:09
Show Gist options
  • Save marcbowes/965160 to your computer and use it in GitHub Desktop.
Save marcbowes/965160 to your computer and use it in GitHub Desktop.
$ cat Gemfile
source 'http://rubygems.org'
gem "rails", ">=3.0.5"
# To use debugger
# gem 'ruby-debug'
gem "guid"
gem "mysql2"
gem "json"
gem "bunny"
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'rspec-rails', '>= 2.0.0'
gem 'cucumber'
gem 'webrat'
gem 'capistrano'
end
$ rvm list
rvm rubies
=> ruby-1.8.7-p334 [ x86_64 ]
$ rvm 1.8.7@bundler-test --create
$ gem list
*** LOCAL GEMS ***
rake (0.8.7)
$ gem install bundler --pre
Fetching: bundler-1.1.pre.4.gem (100%)
Successfully installed bundler-1.1.pre.4
1 gem installed
Installing ri documentation for bundler-1.1.pre.4...
Installing RDoc documentation for bundler-1.1.pre.4...
$ time bundle install
Fetching source index for http://rubygems.org/
Using rake (0.8.7)
Installing abstract (1.0.0)
Installing activesupport (3.0.5)
Installing builder (2.1.2)
Installing i18n (0.5.0)
Installing activemodel (3.0.5)
Installing erubis (2.6.6)
Installing rack (1.2.2)
Installing rack-mount (0.6.13)
Installing rack-test (0.5.7)
Installing tzinfo (0.3.25)
Installing actionpack (3.0.5)
Installing mime-types (1.16)
Installing polyglot (0.3.1)
Installing treetop (1.4.9)
Installing mail (2.2.15)
Installing actionmailer (3.0.5)
Installing arel (2.0.9)
Installing activerecord (3.0.5)
Installing activeresource (3.0.5)
Using bundler (1.1.pre.4)
Installing bunny (0.6.0)
Installing highline (1.6.1)
Installing net-ssh (2.1.3)
Installing net-scp (1.0.4)
Installing net-sftp (2.0.5)
Installing net-ssh-gateway (1.0.1)
Installing capistrano (2.5.19)
Installing diff-lcs (1.1.2)
Installing json (1.4.6) with native extensions
Installing gherkin (2.3.4) with native extensions
Installing term-ansicolor (1.0.5)
Installing cucumber (0.10.0)
Installing guid (0.1.1)
Installing mysql2 (0.2.6) with native extensions
Installing nokogiri (1.4.4) with native extensions
Installing thor (0.14.6)
Installing railties (3.0.5)
Installing rails (3.0.5)
Installing rspec-core (2.5.1)
Installing rspec-expectations (2.5.0)
Installing rspec-mocks (2.5.0)
Installing rspec (2.5.0)
Installing rspec-rails (2.5.0)
Installing webrat (0.7.3)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
real 15m51.587s
user 0m26.200s
sys 0m5.970s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment