summaryrefslogtreecommitdiff
path: root/lib/bundler/worker.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-07-18 16:42:16 -0600
committerAndre Arko <andre@arko.net>2015-07-18 16:44:56 -0600
commit14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a (patch)
tree080c4590629671f0bf0fc23225b9b4b5e5e16e95 /lib/bundler/worker.rb
parent6537566d7179d3aee3451ece710cbe79ced95d4c (diff)
downloadbundler-14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a.tar.gz
Fix Style/SpaceInsideBlockBraces
closes #3850
Diffstat (limited to 'lib/bundler/worker.rb')
-rw-r--r--lib/bundler/worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/worker.rb b/lib/bundler/worker.rb
index 8102328d97..da7eac0b69 100644
--- a/lib/bundler/worker.rb
+++ b/lib/bundler/worker.rb
@@ -19,7 +19,7 @@ module Bundler
@request_queue = Queue.new
@response_queue = Queue.new
@func = func
- @threads = size.times.map { |i| Thread.start { process_queue(i) } }
+ @threads = size.times.map {|i| Thread.start { process_queue(i) } }
trap("INT") { abort_threads }
end