Created
November 9, 2011 12:57
-
-
Save tobstarr/1351343 to your computer and use it in GitHub Desktop.
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
# ~/Projects/simfy $ bundle -v | |
Bundler version 1.1.rc | |
# ~/Projects/simfy $ time bundle exec ./script/runner "puts 1" | |
1 | |
real 0m12.492s | |
user 0m10.768s | |
sys 0m1.602s | |
# ~/Projects/simfy $ time bundle exec ./script/runner "puts 1" | |
1 | |
real 0m12.963s | |
user 0m11.151s | |
sys 0m1.670s | |
# ~/Projects/simfy $ time bundle exec ./script/runner "puts 1" | |
1 | |
real 0m12.467s | |
user 0m10.739s | |
sys 0m1.606s | |
# ~/Projects/simfy $ gem uninstall bundler | |
Select gem to uninstall: | |
1. bundler-1.0.21 | |
2. bundler-1.1.rc | |
3. All versions | |
> 2 | |
Successfully uninstalled bundler-1.1.rc | |
# ~/Projects/simfy $ bundle -v | |
Bundler version 1.0.21 | |
# ~/Projects/simfy $ time bundle exec ./script/runner "puts 1" | |
1 | |
real 0m9.824s | |
user 0m8.111s | |
sys 0m1.590s | |
# ~/Projects/simfy $ time bundle exec ./script/runner "puts 1" | |
1 | |
real 0m9.692s | |
user 0m7.984s | |
sys 0m1.586s | |
# ~/Projects/simfy $ time bundle exec ./script/runner "puts 1" | |
1 | |
real 0m9.745s | |
user 0m8.035s | |
sys 0m1.584s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment