Sha256: 64735d3cadfb67c942b5301bc0c8446c5585410c7a9b32cd502a3f6a9cb2f04c
Contents?: true
Size: 777 Bytes
Versions: 12
Compression:
Stored size: 777 Bytes
Contents
module Fastlane module Actions class OptOutCrashReportingAction < Action def self.run(params) UI.message("fastlane doesn't have crash reporting anymore, feel free to remove `opt_out_crash_reporting` from your Fastfile") end def self.description "This will prevent reports from being uploaded when _fastlane_ crashes" end def self.details "_fastlane_ doesn't have crash reporting anymore. Feel free to remove `opt_out_crash_reporting` from your Fastfile." end def self.authors ['mpirri', 'ohayon'] end def self.is_supported?(platform) true end def self.example_code nil end def self.category :deprecated end end end end
Version data entries
12 entries across 12 versions & 1 rubygems