Class: Molinillo::Resolver::Resolution::Conflict
- Inherits:
-
Struct
- Object
- Struct
- Molinillo::Resolver::Resolution::Conflict
- Defined in:
- lib/molinillo/resolution.rb
Overview
A conflict that the resolution process encountered
Instance Attribute Summary collapse
-
#existing ⇒ Object?
the existing spec that was in conflict with the #possibility.
-
#possibility ⇒ Object
the spec that was unable to be activated due to a conflict.
-
#requirements ⇒ {String,Nil=>[Object]}
the requirements that caused the conflict.
Instance Attribute Details
#existing ⇒ Object?
the existing spec that was in conflict with the #possibility
11 12 13 |
# File 'lib/molinillo/resolution.rb', line 11 def existing @existing end |
#possibility ⇒ Object
the spec that was unable to be activated due to a conflict
11 12 13 |
# File 'lib/molinillo/resolution.rb', line 11 def possibility @possibility end |
#requirements ⇒ {String,Nil=>[Object]}
the requirements that caused the conflict
11 12 13 |
# File 'lib/molinillo/resolution.rb', line 11 def requirements @requirements end |