new(set, path)
public
Creates a new
GemDependencyAPI that will add dependencies to the Gem::RequestSet set based on the
dependency API description in path.
# File lib/rubygems/request_set/gem_dependency_api.rb, line 134
def initialize set, path
@set = set
@path = path
@current_groups = nil
@current_platform = nil
@current_repository = nil
@default_sources = true
@git_set = @set.git_set
@requires = Hash.new { |h, name| h[name] = [] }
@vendor_set = @set.vendor_set
@gem_sources = {}
@without_groups = []
end