Skip to content

Instantly share code, notes, and snippets.

@bpo
Last active December 11, 2015 05:29
Show Gist options
  • Select an option

  • Save bpo/4552868 to your computer and use it in GitHub Desktop.

Select an option

Save bpo/4552868 to your computer and use it in GitHub Desktop.
the effect of bundler
$ 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