class Fastlane::Actions::SkipDocsAction

Public Class Methods

authors() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 33
def self.authors
  ["KrauseFx"]
end
available_options() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 20
def self.available_options
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 47
def self.category
  :misc
end
description() click to toggle source

@!group Documentation

# 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() click to toggle source
# 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() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 41
def self.example_code
  [
    'skip_docs'
  ]
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 37
def self.is_supported?(platform)
  true
end
output() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 23
def self.output
end
return_value() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 26
def self.return_value
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 4
def self.run(params)
  ENV["FASTLANE_SKIP_DOCS"] = "1"
end
step_text() click to toggle source
# File fastlane/lib/fastlane/actions/skip_docs.rb, line 8
def self.step_text
  nil
end