Class: Fastlane::Actions::XccleanAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::XccleanAction
- Defined in:
- fastlane/lib/fastlane/actions/xcodebuild.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary collapse
- .author ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(params) ⇒ Object
Methods inherited from Fastlane::Action
action_name, authors, deprecated_notes, details, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
505 506 507 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 505 def self. "dtrenz" end |
.available_options ⇒ Object
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 513 def self. [ ['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 ⇒ Object
501 502 503 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 501 def self.category :building end |
.description ⇒ Object
491 492 493 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 491 def self.description "Cleans the project using `xcodebuild`" end |
.example_code ⇒ Object
495 496 497 498 499 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 495 def self.example_code [ 'xcclean' ] end |
.is_supported?(platform) ⇒ Boolean
509 510 511 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 509 def self.is_supported?(platform) [:ios, :mac].include? platform end |
.run(params) ⇒ Object
485 486 487 488 489 |
# File 'fastlane/lib/fastlane/actions/xcodebuild.rb', line 485 def self.run(params) params_hash = params || {} params_hash[:clean] = true XcodebuildAction.run(params_hash) end |