Class: UpmSupport::InstallSpec
- Inherits:
-
Object
- Object
- UpmSupport::InstallSpec
- Defined in:
- lib/upm_support/uplift.rb
Instance Attribute Summary collapse
-
#guid ⇒ Object
readonly
Returns the value of attribute guid.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type: nil, path: nil, guid: nil) ⇒ InstallSpec
constructor
A new instance of InstallSpec.
Constructor Details
#initialize(type: nil, path: nil, guid: nil) ⇒ InstallSpec
Returns a new instance of InstallSpec.
36 37 38 39 40 |
# File 'lib/upm_support/uplift.rb', line 36 def initialize(type: nil, path: nil, guid: nil) @type = type @path = path @guid = guid end |
Instance Attribute Details
#guid ⇒ Object (readonly)
Returns the value of attribute guid.
34 35 36 |
# File 'lib/upm_support/uplift.rb', line 34 def guid @guid end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
34 35 36 |
# File 'lib/upm_support/uplift.rb', line 34 def path @path end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
34 35 36 |
# File 'lib/upm_support/uplift.rb', line 34 def type @type end |