Created
August 26, 2011 23:24
-
-
Save Florent2/1174683 to your computer and use it in GitHub Desktop.
Bundler 1.1 is much faster
This file contains 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
in a newly created Rails 3.1.0.rc5 application: | |
$ time bundle _1.0.15_ install | |
Fetching source index for http://rubygems.org/ | |
[...] | |
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. | |
real 0m39.081s | |
user 0m34.663s | |
sys 0m0.632s | |
$ rm Gemfile.lock | |
$ time bundle _1.1.pre.8_ install | |
Fetching dependency information from the API at http://rubygems.org/...... | |
[...] | |
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. | |
real 0m7.298s | |
user 0m3.771s | |
sys 0m0.363s | |
=> 30 seconds saved!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment