Skip to content

Instantly share code, notes, and snippets.

@mscottford
Created January 23, 2013 05:04
Show Gist options
  • Save mscottford/4602178 to your computer and use it in GitHub Desktop.
Save mscottford/4602178 to your computer and use it in GitHub Desktop.
$ bundle --version
Bundler version 1.2.3
$ cat Gemfile
puts 'Before source'
source :rubygems
puts 'After source'
puts 'Before rake'
gem 'rake'
puts 'After rake'
$ bundle install
Before source
After source
Before rake
After rake
Fetching gem metadata from http://rubygems.org/..
Using rake (10.0.3)
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