Created
January 23, 2013 05:04
-
-
Save mscottford/4602178 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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