class Fastlane::Actions::XccleanAction
def self.author
def self.author "dtrenz" end
def self.available_options
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'], ['output_style', 'Set the output format to one of: :standard (Colored UTF8 output, default), :basic (black & white ASCII outout)'] ] end
def self.description
def self.description "Cleans the project using `xcodebuild`" end
def self.is_supported?(platform)
def self.is_supported?(platform) [:ios, :mac].include? platform end
def self.run(params)
def self.run(params) params_hash = params || {} params_hash[:clean] = true XcodebuildAction.run(params_hash) end