Class: Mixlib::Install::Backend::Base
- Inherits:
-
Object
- Object
- Mixlib::Install::Backend::Base
- Defined in:
- lib/mixlib/install/backend/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
- #endpoint ⇒ Object
- #info ⇒ Object
-
#initialize(options) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(options) ⇒ Base
Returns a new instance of Base.
25 26 27 |
# File 'lib/mixlib/install/backend/base.rb', line 25 def initialize() = end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
23 24 25 |
# File 'lib/mixlib/install/backend/base.rb', line 23 def end |
Instance Method Details
#endpoint ⇒ Object
33 34 35 |
# File 'lib/mixlib/install/backend/base.rb', line 33 def endpoint raise "Must implement endpoint method that returns endpoint String" end |
#info ⇒ Object
29 30 31 |
# File 'lib/mixlib/install/backend/base.rb', line 29 def info raise "Must implement info method that returns ArtifactInfo or Array<ArtifactInfo>" end |