summaryrefslogtreecommitdiff
path: root/lib/bundler/installer.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-07-18 16:47:28 -0600
committerAndre Arko <andre@arko.net>2015-07-18 16:47:28 -0600
commit77c9dd8fbe602c05040d7f2df3ff7decb08eb53e (patch)
tree97ba081c3cd569ba2f6227df8dd9cbfbe114191f /lib/bundler/installer.rb
parent0f8bc78180ce4f8bae5dc48e2078b44cd4fafe44 (diff)
downloadbundler-77c9dd8fbe602c05040d7f2df3ff7decb08eb53e.tar.gz
Fix Style/SpaceAroundOperators
closes #3854
Diffstat (limited to 'lib/bundler/installer.rb')
-rw-r--r--lib/bundler/installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 3295fc840d..3c9e547747 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -176,7 +176,7 @@ module Bundler
# installation is just SO MUCH FASTER. so we let people opt in.
def install(options)
force = options["force"]
- jobs = [Bundler.settings[:jobs].to_i-1, 1].max
+ jobs = [Bundler.settings[:jobs].to_i - 1, 1].max
if jobs > 1 && can_install_in_parallel?
require "bundler/installer/parallel_installer"
install_in_parallel jobs, options[:standalone], force