Class: Fastlane::Actions::OptOutCrashReportingAction

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

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, available_options, deprecated_notes, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



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

def self.authors
  ['mpirri', 'ohayon']
end

.categoryObject



28
29
30
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 28

def self.category
  :deprecated
end

.descriptionObject



8
9
10
# 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

.detailsObject



12
13
14
# 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_codeObject



24
25
26
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 24

def self.example_code
  nil
end

.is_supported?(platform) ⇒ Boolean

Returns:



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

def self.is_supported?(platform)
  true
end

.run(params) ⇒ Object



4
5
6
# 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