Sha256: 59f2e6a579accef83b9d9ad4d1e617f994dc2b20d8238fc7b12488fefcd7959b
Contents?: true
Size: 778 Bytes
Versions: 23
Compression:
Stored size: 778 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 [] end def self.category :deprecated end end end end
Version data entries
23 entries across 23 versions & 1 rubygems