Class: Fastlane::Actions::OptOutCrashReportingAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
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
.authors ⇒ Object
16
17
18
|
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 16
def self.authors
['mpirri', 'ohayon']
end
|
.category ⇒ Object
28
29
30
|
# File 'fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb', line 28
def self.category
:deprecated
end
|
.description ⇒ Object
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
|
.details ⇒ Object
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_code ⇒ Object
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
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
|