Class: KCommercial::KCPipeline::RunDemoConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/KCommercialPipeline/core/app_demo.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(infos) ⇒ RunDemoConfig

Returns a new instance of RunDemoConfig.



18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 18

def initialize(infos)
  unless infos.nil?
    @bundle_identifier = infos['bundle_identifier']
    @code_sign_style = infos['code_sign_style']
    @code_sign_identity = infos['code_sign_identity']
    @development_team = infos['development_team']
    @provisioning_profile = infos['provisioning_profile']
    @provisioning_profile_specifier = infos['provisioning_profile_specifier']
    @demo_name = infos["demo_name"]
    @version_cfg = infos["version_cfg"]
  end
end

Instance Attribute Details

#bundle_identifierObject

bundle_id



10
11
12
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 10

def bundle_identifier
  @bundle_identifier
end

#code_sign_identityObject

Returns the value of attribute code_sign_identity.



12
13
14
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 12

def code_sign_identity
  @code_sign_identity
end

#code_sign_styleObject

Returns the value of attribute code_sign_style.



11
12
13
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 11

def code_sign_style
  @code_sign_style
end

#demo_nameObject

Returns the value of attribute demo_name.



16
17
18
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 16

def demo_name
  @demo_name
end

#development_teamObject

Returns the value of attribute development_team.



13
14
15
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 13

def development_team
  @development_team
end

#provisioning_profileObject

Returns the value of attribute provisioning_profile.



14
15
16
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 14

def provisioning_profile
  @provisioning_profile
end

#provisioning_profile_specifierObject

Returns the value of attribute provisioning_profile_specifier.



15
16
17
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 15

def provisioning_profile_specifier
  @provisioning_profile_specifier
end

#version_cfgObject

Returns the value of attribute version_cfg.



17
18
19
# File 'lib/KCommercialPipeline/core/app_demo.rb', line 17

def version_cfg
  @version_cfg
end