class Fastlane::Actions::XcexportAction

Public Class Methods

author() click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 561
def self.author
  "dtrenz"
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 565
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\''],
    ['xcpretty_utf', 'Specifies xcpretty should use utf8 when reporting builds. This has no effect when raw_buildlog is specified.']
  ]
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 557
def self.category
  :building
end
description() click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 547
def self.description
  "Exports the project using `xcodebuild`"
end
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 551
def self.example_code
  [
    'xcexport'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 581
def self.is_supported?(platform)
  [:ios, :mac].include? platform
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/xcodebuild.rb, line 541
def self.run(params)
  params_hash = params || {}
  params_hash[:export_archive] = true
  XcodebuildAction.run(params_hash)
end