Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion bundler/lib/bundler/dep_proxy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ def self.get_proxy(dep, platform)
def initialize(dep, platform)
@dep = dep
@__platform = platform

# save the name to save a method call to the dep's name
@name = dep.name
end

private_class_method :new
Expand All @@ -24,7 +27,7 @@ def type
end

def name
@dep.name
@name
end

def requirement
Expand Down