Class: Fastlane::Actions::CleanBuildArtifactsAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, deprecated_notes, 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
49
50
51
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 49
def self.author
"lmirosevic"
end
|
.available_options ⇒ Object
27
28
29
30
31
32
33
34
35
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 27
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :exclude_pattern,
env_name: "FL_CLEAN_BUILD_ARTIFACTS_EXCLUDE_PATTERN",
description: "Exclude all files from clearing that match the given Regex pattern: e.g. '.*\.mobileprovision'",
default_value: nil,
optional: true)
]
end
|
.category ⇒ Object
63
64
65
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 63
def self.category
:misc
end
|
.description ⇒ Object
37
38
39
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 37
def self.description
"Deletes files created as result of running gym, cert, sigh or download_dsyms"
end
|
.details ⇒ Object
41
42
43
44
45
46
47
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 41
def self.details
[
"This action deletes the files that get created in your repo as a result of running the _gym_ and _sigh_ commands. It doesn't delete the `fastlane/report.xml` though, this is probably more suited for the .gitignore.",
"",
"Useful if you quickly want to send out a test build by dropping down to the command line and typing something like `fastlane beta`, without leaving your repo in a messy state afterwards."
].join("\n")
end
|
.example_code ⇒ Object
57
58
59
60
61
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 57
def self.example_code
[
'clean_build_artifacts'
]
end
|
.is_supported?(platform) ⇒ Boolean
53
54
55
|
# File 'fastlane/lib/fastlane/actions/clean_build_artifacts.rb', line 53
def self.is_supported?(platform)
[:ios, :mac].include?(platform)
end
|