Class: Thrust::DeploymentTarget

Inherits:
Object
  • Object
show all
Defined in:
lib/thrust/deployment_target.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ DeploymentTarget

Returns a new instance of DeploymentTarget.



12
13
14
15
16
17
18
19
20
21
# File 'lib/thrust/deployment_target.rb', line 12

def initialize(attributes)
  @distribution_list = attributes['distribution_list']
  @build_configuration = attributes['build_configuration']
  @provisioning_search_query = attributes['provisioning_search_query']
  @target = attributes['target']
  @note_generation_method = attributes['note_generation_method']
  @notify = attributes['notify']
  @versioning_method = attributes['versioning_method']
  @tag = attributes['tag']
end

Instance Attribute Details

#build_configurationObject (readonly)

Returns the value of attribute build_configuration.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def build_configuration
  @build_configuration
end

#distribution_listObject (readonly)

Returns the value of attribute distribution_list.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def distribution_list
  @distribution_list
end

#note_generation_methodObject (readonly)

Returns the value of attribute note_generation_method.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def note_generation_method
  @note_generation_method
end

#notifyObject (readonly)

Returns the value of attribute notify.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def notify
  @notify
end

#provisioning_search_queryObject (readonly)

Returns the value of attribute provisioning_search_query.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def provisioning_search_query
  @provisioning_search_query
end

#tagObject (readonly)

Returns the value of attribute tag.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def tag
  @tag
end

#targetObject (readonly)

Returns the value of attribute target.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def target
  @target
end

#versioning_methodObject (readonly)

Returns the value of attribute versioning_method.



3
4
5
# File 'lib/thrust/deployment_target.rb', line 3

def versioning_method
  @versioning_method
end