Class: Fastlane::Actions::XccleanAction

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

Class Method Summary collapse

Methods inherited from Fastlane::Action

available_options, details, output, sh

Class Method Details

.authorObject



286
287
288
# File 'lib/fastlane/actions/xcodebuild.rb', line 286

def self.author
  "dtrenz"
end

.descriptionObject



282
283
284
# File 'lib/fastlane/actions/xcodebuild.rb', line 282

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

.run(params) ⇒ Object



276
277
278
279
280
# File 'lib/fastlane/actions/xcodebuild.rb', line 276

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