class Fastlane::Actions::SentryCheckCliInstalledAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 28
def self.authors
  ["matt-oakes"]
end
available_options() click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 36
def self.available_options
  Helper::SentryConfig.common_cli_config_items
end
description() click to toggle source

@!group Documentation

# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 13
def self.description
  "Checks that sentry-cli with the correct version is installed"
end
details() click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 17
def self.details
  [
    "This action checks that the senty-cli is installed and meets the mimum verson requirements.",
    "You can use it at the start of your lane to ensure that sentry-cli is correctly installed."
  ].join(" ")
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 32
def self.is_supported?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 24
def self.return_value
  nil
end
run(params) click to toggle source
# File lib/fastlane/plugin/sentry/actions/sentry_check_cli_installed.rb, line 4
def self.run(params)
  Helper::SentryHelper.find_and_check_sentry_cli_path!(params)
  UI.success("Successfully checked that sentry-cli is installed")
end