Class: Bundler::Molinillo::Resolver
- Inherits:
-
Object
- Object
- Bundler::Molinillo::Resolver
- Defined in:
- lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb,
lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb
Overview
This class encapsulates a dependency resolver. The resolver is responsible for determining which set of dependencies to activate, with feedback from the the #specification_provider
Defined Under Namespace
Classes: Resolution
Instance Attribute Summary collapse
-
#resolver_ui ⇒ UI
readonly
The UI module used to communicate back to the user during the resolution process.
-
#specification_provider ⇒ SpecificationProvider
readonly
The specification provider used in the resolution process.
Instance Method Summary collapse
-
#initialize(specification_provider, resolver_ui) ⇒ Resolver
constructor
A new instance of Resolver.
-
#resolve(requested, base = DependencyGraph.new) ⇒ Object
Resolves the requested dependencies into a DependencyGraph, locking to the base dependency graph (if specified).
Constructor Details
#initialize(specification_provider, resolver_ui) ⇒ Resolver
Returns a new instance of Resolver.
24 25 26 27 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb', line 24 def initialize(specification_provider, resolver_ui) @specification_provider = specification_provider @resolver_ui = resolver_ui end |
Instance Attribute Details
#resolver_ui ⇒ UI (readonly)
Returns the UI module used to communicate back to the user during the resolution process.
18 19 20 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb', line 18 def resolver_ui @resolver_ui end |
#specification_provider ⇒ SpecificationProvider (readonly)
Returns the specification provider used in the resolution process.
14 15 16 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb', line 14 def specification_provider @specification_provider end |
Instance Method Details
#resolve(requested, base = DependencyGraph.new) ⇒ Object
Resolves the requested dependencies into a DependencyGraph, locking to the base dependency graph (if specified)
35 36 37 38 39 40 41 |
# File 'lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb', line 35 def resolve(requested, base = DependencyGraph.new) Resolution.new(specification_provider, resolver_ui, requested, base). resolve end |