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
62 63 64 |
# File 'lib/build/dependency/provider.rb', line 62 def dependency @dependency end |
#provision ⇒ Object
Returns the value of attribute provision
62 63 64 |
# File 'lib/build/dependency/provider.rb', line 62 def provision @provision end |
Instance Method Details
#name ⇒ Object
63 64 65 |
# File 'lib/build/dependency/provider.rb', line 63 def name dependency.name end |
#provider ⇒ Object
67 68 69 |
# File 'lib/build/dependency/provider.rb', line 67 def provider provision.provider end |
#to_s ⇒ Object
71 72 73 |
# File 'lib/build/dependency/provider.rb', line 71 def to_s "resolution #{provider.name.inspect} -> #{dependency.name.inspect}" end |