Skip to content

Instantly share code, notes, and snippets.

@Florent2
Created August 26, 2011 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Florent2/1174683 to your computer and use it in GitHub Desktop.
Save Florent2/1174683 to your computer and use it in GitHub Desktop.
Bundler 1.1 is much faster
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