class
Importance_1
v2_1_10 - Show latest stable - 0 notes - Superclass: Object

Given a set of Gem::Dependency objects as needed and a way to query the set of available specs via set, calculates a set of ActivationRequest objects which indicate all the specs that should be activated to meet the all the requirements.

Constants

State = Struct.new(:needed, :specs, :dep, :spec, :possibles, :conflicts) do def summary # :nodoc: nd = needed.map { |s| s.to_s }.sort if nd if specs then ss = specs.map { |s| s.full_name }.sort ss.unshift ss.length end d = dep.to_s d << " from #{dep.requester.full_name}" if dep.requester ps = possibles.map { |p| p.full_name }.sort ps.unshift ps.length cs = conflicts.map do |(s, c)| [s.full_name, c.conflicting_dependencies.map { |cd| cd.to_s }] end { :needed => nd, :specs => ss, :dep => d, :spec => spec.full_name, :possibles => ps, :conflicts => cs } end end

DEBUG_RESOLVER = !ENV['DEBUG_RESOLVER'].nil?

Attributes

[RW] soft_missing

When a missing dependency, don’t stop. Just go on and record what was missing.

[R] stats
[R] missing

List of dependencies that could not be found in the configured sources.

[RW] ignore_dependencies

When true, no dependencies are looked up for requested gems.

[RW] development

Set to true if development dependencies should be considered.

[R] conflicts

Contains all the conflicts encountered while doing resolution

Show files where this class is defined (1 file)
Register or log in to add new notes.