Class: Fastlane::Actions::XcexportAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/xcodebuild.rb

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, details, method_missing, other_action, output, return_value, sh, step_text

Class Method Details

.authorObject



479
480
481
# File 'lib/fastlane/actions/xcodebuild.rb', line 479

def self.author
  "dtrenz"
end

.available_optionsObject



483
484
485
486
487
488
489
490
491
492
493
494
495
496
# File 'lib/fastlane/actions/xcodebuild.rb', line 483

def self.available_options
  [
    ['archive', 'Set to true to build archive'],
    ['archive_path', 'The path to archive the to. Must contain `.xcarchive`'],
    ['workspace', 'The workspace to use'],
    ['scheme', 'The scheme to build'],
    ['build_settings', 'Hash of additional build information'],
    ['xcargs', 'Pass additional xcodebuild options'],
    ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII output)'],
    ['buildlog_path', 'The path where the xcodebuild.log will be created, by default it is created in ~/Library/Logs/fastlane/xcbuild'],
    ['raw_buildlog', 'Set to true to see xcodebuild raw output. Default value is false'],
    ['xcpretty_output', 'specifies the output type for xcpretty. eg. \'test\', or \'simple\'']
  ]
end

.descriptionObject



475
476
477
# File 'lib/fastlane/actions/xcodebuild.rb', line 475

def self.description
  "Exports the project using `xcodebuild`"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


498
499
500
# File 'lib/fastlane/actions/xcodebuild.rb', line 498

def self.is_supported?(platform)
  [:ios, :mac].include? platform
end

.run(params) ⇒ Object



469
470
471
472
473
# File 'lib/fastlane/actions/xcodebuild.rb', line 469

def self.run(params)
  params_hash = params || {}
  params_hash[:export_archive] = true
  XcodebuildAction.run(params_hash)
end