Method: XCJobs::Export#initialize

Defined in:
lib/xcjobs/xcodebuild.rb

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

Returns a new instance of Export.

Yields:

  • (_self)

Yield Parameters:



335
336
337
338
339
340
341
342
# File 'lib/xcjobs/xcodebuild.rb', line 335

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