Class: Fastlane::Actions::SkipDocsAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?
Class Method Details
.authors ⇒ Object
33
34
35
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 33
def self.authors
["KrauseFx"]
end
|
.available_options ⇒ Object
20
21
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 20
def self.available_options
end
|
.category ⇒ Object
47
48
49
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 47
def self.category
:misc
end
|
.description ⇒ Object
16
17
18
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 16
def self.description
"Skip the creation of the fastlane/README.md file when running fastlane"
end
|
.details ⇒ Object
29
30
31
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 29
def self.details
"Tell _fastlane_ to not automatically create a `fastlane/README.md` when running _fastlane_. You can always trigger the creation of this file manually by running `fastlane docs`."
end
|
.example_code ⇒ Object
41
42
43
44
45
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 41
def self.example_code
[
'skip_docs'
]
end
|
.is_supported?(platform) ⇒ Boolean
37
38
39
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 37
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
23
24
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 23
def self.output
end
|
.return_value ⇒ Object
26
27
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 26
def self.return_value
end
|
.run(params) ⇒ Object
4
5
6
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 4
def self.run(params)
ENV["FASTLANE_SKIP_DOCS"] = "1"
end
|
.step_text ⇒ Object
8
9
10
|
# File 'fastlane/lib/fastlane/actions/skip_docs.rb', line 8
def self.step_text
nil
end
|