Class: XCJobs::Export

Inherits:
Xcodebuild show all
Defined in:
lib/xcjobs/xcodebuild.rb

Instance Attribute Summary collapse

Attributes inherited from Xcodebuild

#build_dir, #configuration, #coverage, #destinations, #formatter, #name, #project, #provisioning_profile, #provisioning_profile_name, #provisioning_profile_uuid, #scheme, #sdk, #signing_identity, #target, #unsetenv_others, #workspace

Instance Method Summary collapse

Methods inherited from Xcodebuild

#add_build_setting, #add_destination, #after_action, #before_action, #coverage_enabled

Constructor Details

#initialize(name = :export) {|_self| ... } ⇒ Export

Returns a new instance of Export.

Yields:

  • (_self)

Yield Parameters:



362
363
364
365
366
367
368
# File 'lib/xcjobs/xcodebuild.rb', line 362

def initialize(name = :export)
  super
  self.unsetenv_others = true
  @export_format = 'IPA'
  yield self if block_given?
  define
end

Instance Attribute Details

#archive_pathObject

Returns the value of attribute archive_path.



353
354
355
# File 'lib/xcjobs/xcodebuild.rb', line 353

def archive_path
  @archive_path
end

#export_formatObject

Returns the value of attribute export_format.



354
355
356
# File 'lib/xcjobs/xcodebuild.rb', line 354

def export_format
  @export_format
end

#export_installer_identityObject

Returns the value of attribute export_installer_identity.



358
359
360
# File 'lib/xcjobs/xcodebuild.rb', line 358

def export_installer_identity
  @export_installer_identity
end

#export_pathObject

Returns the value of attribute export_path.



355
356
357
# File 'lib/xcjobs/xcodebuild.rb', line 355

def export_path
  @export_path
end

#export_provisioning_profileObject

Returns the value of attribute export_provisioning_profile.



356
357
358
# File 'lib/xcjobs/xcodebuild.rb', line 356

def export_provisioning_profile
  @export_provisioning_profile
end

#export_signing_identityObject

Returns the value of attribute export_signing_identity.



357
358
359
# File 'lib/xcjobs/xcodebuild.rb', line 357

def export_signing_identity
  @export_signing_identity
end

#export_with_original_signing_identityObject

Returns the value of attribute export_with_original_signing_identity.



359
360
361
# File 'lib/xcjobs/xcodebuild.rb', line 359

def export_with_original_signing_identity
  @export_with_original_signing_identity
end

#options_plistObject

Returns the value of attribute options_plist.



360
361
362
# File 'lib/xcjobs/xcodebuild.rb', line 360

def options_plist
  @options_plist
end