Class: Build::Dependency::Resolution
- Inherits:
-
Struct
- Object
- Struct
- Build::Dependency::Resolution
- Defined in:
- lib/build/dependency/provider.rb
Instance Attribute Summary collapse
-
#dependency ⇒ Object
Returns the value of attribute dependency.
-
#provision ⇒ Object
Returns the value of attribute provision.
Instance Method Summary collapse
Instance Attribute Details
#dependency ⇒ Object
Returns the value of attribute dependency
49 50 51 |
# File 'lib/build/dependency/provider.rb', line 49 def dependency @dependency end |
#provision ⇒ Object
Returns the value of attribute provision
49 50 51 |
# File 'lib/build/dependency/provider.rb', line 49 def provision @provision end |
Instance Method Details
#name ⇒ Object
50 51 52 |
# File 'lib/build/dependency/provider.rb', line 50 def name dependency.name end |
#provider ⇒ Object
54 55 56 |
# File 'lib/build/dependency/provider.rb', line 54 def provider provision.provider end |
#to_s ⇒ Object
58 59 60 |
# File 'lib/build/dependency/provider.rb', line 58 def to_s "resolution #{provider.name.inspect} -> #{dependency.name.inspect}" end |