diff options
author | Andre Arko <andre@arko.net> | 2014-04-06 16:55:00 +0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2014-04-06 16:55:10 +0700 |
commit | 527e62da9412c9c7039cca7f794539a89f4084d8 (patch) | |
tree | da45c4e7a86e5cc18bff03265d5be98f72070ca1 /bin/bundle | |
parent | 6913caed339594be776e665961f5d1e8fad4b765 (diff) | |
download | bundler-527e62da9412c9c7039cca7f794539a89f4084d8.tar.gz |
make bundler as fast as bundle
Diffstat (limited to 'bin/bundle')
-rwxr-xr-x | bin/bundle | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/bundle b/bin/bundle index 7bfdd3a214..63285e96e2 100755 --- a/bin/bundle +++ b/bin/bundle @@ -14,7 +14,8 @@ $LOAD_PATH.each do |path| end end -require 'bundler/cli' - require 'bundler/friendly_errors' -Bundler.with_friendly_errors { Bundler::CLI.start(ARGV, :debug => true) } +Bundler.with_friendly_errors do + require 'bundler/cli' + Bundler::CLI.start(ARGV, :debug => true) +end |