Class: XCJobs::Export
- Inherits:
-
Xcodebuild
- Object
- Rake::TaskLib
- Xcodebuild
- XCJobs::Export
- Defined in:
- lib/xcjobs/xcodebuild.rb
Instance Attribute Summary collapse
-
#archive_path ⇒ Object
Returns the value of attribute archive_path.
-
#export_format ⇒ Object
Returns the value of attribute export_format.
-
#export_installer_identity ⇒ Object
Returns the value of attribute export_installer_identity.
-
#export_path ⇒ Object
Returns the value of attribute export_path.
-
#export_provisioning_profile ⇒ Object
Returns the value of attribute export_provisioning_profile.
-
#export_signing_identity ⇒ Object
Returns the value of attribute export_signing_identity.
-
#export_with_original_signing_identity ⇒ Object
Returns the value of attribute export_with_original_signing_identity.
-
#options_plist ⇒ Object
Returns the value of attribute options_plist.
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
-
#initialize(name = :export) {|_self| ... } ⇒ Export
constructor
A new instance of Export.
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.
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_path ⇒ Object
Returns the value of attribute archive_path.
353 354 355 |
# File 'lib/xcjobs/xcodebuild.rb', line 353 def archive_path @archive_path end |
#export_format ⇒ Object
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_identity ⇒ Object
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_path ⇒ Object
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_profile ⇒ Object
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_identity ⇒ Object
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_identity ⇒ Object
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_plist ⇒ Object
Returns the value of attribute options_plist.
360 361 362 |
# File 'lib/xcjobs/xcodebuild.rb', line 360 def @options_plist end |