Class: XCJobs::Archive

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

Instance Attribute Summary collapse

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

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.

Yields:

  • (_self)

Yield Parameters:



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

Parameters:

  • value

    the value to set the attribute archive_path to.



275
276
277
# File 'lib/xcjobs/xcodebuild.rb', line 275

def archive_path=(value)
  @archive_path = value
end