aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/definition.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/definition.rb')
-rw-r--r--lib/bundler/definition.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb
index ec779428..0cd20101 100644
--- a/lib/bundler/definition.rb
+++ b/lib/bundler/definition.rb
@@ -47,10 +47,13 @@ module Bundler
def initialize(lockfile, dependencies, sources, unlock, ruby_version = nil, optional_groups = [])
@unlocking = unlock == true || !unlock.empty?
- @dependencies, @sources, @unlock, @optional_groups = dependencies, sources, unlock, optional_groups
- @remote = false
- @specs = nil
- @ruby_version = ruby_version
+ @dependencies = dependencies
+ @sources = sources
+ @unlock = unlock
+ @optional_groups = optional_groups
+ @remote = false
+ @specs = nil
+ @ruby_version = ruby_version
@lockfile_contents = ""
@locked_bundler_version = nil