Last active
December 11, 2015 05:29
-
-
Save bpo/4552868 to your computer and use it in GitHub Desktop.
the effect of bundler
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
| $ time ruby -e "puts 'hi'" | |
| hi | |
| real 0m0.060s | |
| user 0m0.033s | |
| sys 0m0.025s | |
| $ time bundle exec ruby -e "puts 'hi'" | |
| hi | |
| real 0m1.635s | |
| user 0m1.505s | |
| sys 0m0.118s | |
| $ time bundle exec ruby -e "puts 'hi'" | |
| Could not locate Gemfile | |
| real 0m0.454s | |
| user 0m0.401s | |
| sys 0m0.048s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment