class Fastlane::Actions::SentryCheckCliInstalledAction
Public Class Methods
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.check_sentry_cli! UI.success("Successfully checked that sentry-cli is installed") end