Class: Fastlane::Actions::SkipDocsAction

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

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, details, lane_context, method_missing, other_action, sh

Class Method Details

.authorsObject



29
30
31
# File 'lib/fastlane/actions/skip_docs.rb', line 29

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



20
21
# File 'lib/fastlane/actions/skip_docs.rb', line 20

def self.available_options
end

.descriptionObject



16
17
18
# File 'lib/fastlane/actions/skip_docs.rb', line 16

def self.description
  "Skip the creation of the fastlane/README.md file when running fastlane"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/fastlane/actions/skip_docs.rb', line 33

def self.is_supported?(platform)
  true
end

.outputObject



23
24
# File 'lib/fastlane/actions/skip_docs.rb', line 23

def self.output
end

.return_valueObject



26
27
# File 'lib/fastlane/actions/skip_docs.rb', line 26

def self.return_value
end

.run(params) ⇒ Object



4
5
6
# File 'lib/fastlane/actions/skip_docs.rb', line 4

def self.run(params)
  ENV["FASTLANE_SKIP_DOCS"] = "1"
end

.step_textObject



8
9
10
# File 'lib/fastlane/actions/skip_docs.rb', line 8

def self.step_text
  nil
end