summaryrefslogtreecommitdiff
path: root/lib/bundler/installer
diff options
context:
space:
mode:
authorErick Sasse <esasse@gmail.com>2015-08-02 01:49:02 -0300
committerErick Sasse <esasse@gmail.com>2015-08-02 01:49:02 -0300
commit18b3e2e75fd958ca9a84f36250ac72618eb724a8 (patch)
treee742f990bad986094434be98d28b838dee25074b /lib/bundler/installer
parent28c685393dd8c9b9d7e421a7c903da626d4deaf7 (diff)
downloadbundler-18b3e2e75fd958ca9a84f36250ac72618eb724a8.tar.gz
Fix Style/ParallelAssignment
Diffstat (limited to 'lib/bundler/installer')
-rw-r--r--lib/bundler/installer/parallel_installer.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/installer/parallel_installer.rb b/lib/bundler/installer/parallel_installer.rb
index b962563a57..84bdb425fa 100644
--- a/lib/bundler/installer/parallel_installer.rb
+++ b/lib/bundler/installer/parallel_installer.rb
@@ -4,7 +4,8 @@ class ParallelInstaller
class SpecInstallation
attr_accessor :spec, :name, :post_install_message, :state
def initialize(spec)
- @spec, @name = spec, spec.name
+ @spec = spec
+ @name = spec.name
@state = :none
@post_install_message = ""
end