Class: UpmSupport::InstallSpec

Inherits:
Object
  • Object
show all
Defined in:
lib/upm_support/uplift.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#guidObject (readonly)

Returns the value of attribute guid.



34
35
36
# File 'lib/upm_support/uplift.rb', line 34

def guid
  @guid
end

#pathObject (readonly)

Returns the value of attribute path.



34
35
36
# File 'lib/upm_support/uplift.rb', line 34

def path
  @path
end

#typeObject (readonly)

Returns the value of attribute type.



34
35
36
# File 'lib/upm_support/uplift.rb', line 34

def type
  @type
end