Sha256: bccadd8699d765491027733c9361ccd9ab56e6c0b8c2e4600340cc4016ec9257
Contents?: true
Size: 812 Bytes
Versions: 3
Compression:
Stored size: 812 Bytes
Contents
module Fastlane module Actions class OptOutCrashReportingAction < Action 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 def self.description "This will prevent reports from being uploaded when _fastlane_ crashes" end def self.details "_fastlane_ doesn't have crash reporting any more. 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
3 entries across 3 versions & 1 rubygems