class Fastlane::Actions::OptOutCrashReportingAction

Public Class Methods

authors() click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 16
def self.authors
  ['mpirri', 'ohayon']
end
category() click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 28
def self.category
  :deprecated
end
description() click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 8
def self.description
  "This will prevent reports from being uploaded when _fastlane_ crashes"
end
details() click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 12
def self.details
  "_fastlane_ doesn't have crash reporting any more. Feel free to remove `opt_out_crash_reporting` from your Fastfile."
end
example_code() click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 24
def self.example_code
  nil
end
is_supported?(platform) click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 20
def self.is_supported?(platform)
  true
end
run(params) click to toggle source
# File fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb, line 4
def self.run(params)
  UI.message("fastlane doesn't have crash reporting any more, feel free to remove `opt_out_crash_reporting` from your Fastfile")
end