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



18
19
20
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 18

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

.categoryObject



30
31
32
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 30

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
15
16
# 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"
  ].join(' ')
end

.example_codeObject



26
27
28
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 26

def self.example_code
  []
end

.is_supported?(platform) ⇒ Boolean

Returns:



22
23
24
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 22

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