Skip to content

Instantly share code, notes, and snippets.

@mscottford
Created February 1, 2013 04:03
Show Gist options
  • Save mscottford/4689100 to your computer and use it in GitHub Desktop.
Save mscottford/4689100 to your computer and use it in GitHub Desktop.
$ bundle -v
Bundler version 1.2.3
$ cat Gemfile
source :rubygems
gem 'chef', '~>0.9.14'
:ruby => '1.9.3-p327'
sunstreaker:i1113 mscottford$ bundle install
Using bunny (0.8.0)
Using erubis (2.7.0)
Using extlib (0.9.16)
Using highline (1.6.15)
Using json (1.4.6)
Using mixlib-log (1.4.1)
Using mixlib-authentication (1.3.0)
Using mixlib-cli (1.3.0)
Using mixlib-config (1.1.2)
Using moneta (0.7.9)
Using ipaddress (0.8.0)
Using mixlib-shellout (1.1.0)
Using systemu (2.5.2)
Using yajl-ruby (1.1.0)
Using ohai (6.16.0)
Using mime-types (1.19)
Using rest-client (1.6.7)
Using uuidtools (2.1.3)
Using chef (0.9.18)
Using bundler (1.2.3)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
$ echo "gem 'cucumber', '>= 0'" >> Gemfile
$ cat Gemfile
source :rubygems
gem 'chef', '~>0.9.14'
gem 'cucumber', '>= 0'
$ bundle
Using builder (3.0.4)
Using bunny (0.8.0)
Using erubis (2.7.0)
Using extlib (0.9.16)
Using highline (1.6.15)
Using json (1.4.6)
Using mixlib-log (1.4.1)
Using mixlib-authentication (1.3.0)
Using mixlib-cli (1.3.0)
Using mixlib-config (1.1.2)
Using moneta (0.7.9)
Using ipaddress (0.8.0)
Using mixlib-shellout (1.1.0)
Using systemu (2.5.2)
Using yajl-ruby (1.1.0)
Using ohai (6.16.0)
Using mime-types (1.19)
Using rest-client (1.6.7)
Using uuidtools (2.1.3)
Using chef (0.9.18)
Using diff-lcs (1.1.3)
Using gherkin (2.11.5)
Using cucumber (1.2.1)
Using bundler (1.2.3)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
$ gem list chef
*** LOCAL GEMS ***
chef (0.9.18)
$ cat Gemfile
source :rubygems
gem 'chef', '~>0.9.18'
gem 'cucumber', '>= 0'
$ bundle
Using builder (3.0.4)
Using bunny (0.8.0)
Using erubis (2.7.0)
Using extlib (0.9.16)
Using highline (1.6.15)
Using json (1.4.6)
Using mixlib-log (1.4.1)
Using mixlib-authentication (1.3.0)
Using mixlib-cli (1.3.0)
Using mixlib-config (1.1.2)
Using moneta (0.7.9)
Using ipaddress (0.8.0)
Using mixlib-shellout (1.1.0)
Using systemu (2.5.2)
Using yajl-ruby (1.1.0)
Using ohai (6.16.0)
Using mime-types (1.19)
Using rest-client (1.6.7)
Using uuidtools (2.1.3)
Using chef (0.9.18)
Using diff-lcs (1.1.3)
Using gherkin (2.11.5)
Using cucumber (1.2.1)
Using bundler (1.2.3)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment