Class: XCJobs::Archive
- Inherits:
-
Xcodebuild
- Object
- Rake::TaskLib
- Xcodebuild
- XCJobs::Archive
- Defined in:
- lib/xcjobs/xcodebuild.rb
Instance Attribute Summary collapse
-
#archive_path ⇒ Object
writeonly
Sets the attribute archive_path.
Attributes inherited from Xcodebuild
#build_dir, #configuration, #coverage, #description, #destinations, #formatter, #hide_shell_script_environment, #name, #project, #provisioning_profile, #provisioning_profile_name, #provisioning_profile_uuid, #scheme, #sdk, #signing_identity, #target, #unsetenv_others, #workspace
Instance Method Summary collapse
-
#initialize(name = :archive) {|_self| ... } ⇒ Archive
constructor
A new instance of Archive.
Methods inherited from Xcodebuild
#add_build_option, #add_build_setting, #add_destination, #add_only_testing, #add_skip_testing, #after_action, #before_action, #coverage_enabled
Constructor Details
#initialize(name = :archive) {|_self| ... } ⇒ Archive
Returns a new instance of Archive.
277 278 279 280 281 282 |
# File 'lib/xcjobs/xcodebuild.rb', line 277 def initialize(name = :archive) super @description ||= 'make xcarchive' yield self if block_given? define end |
Instance Attribute Details
#archive_path=(value) ⇒ Object
Sets the attribute archive_path
275 276 277 |
# File 'lib/xcjobs/xcodebuild.rb', line 275 def archive_path=(value) @archive_path = value end |