Sha256: 03f5ce8c401267c78559b2554226b17c15cf51b8f10f4f776f2d5bfa4aca1dda
Contents?: true
Size: 779 Bytes
Versions: 491
Compression:
Stored size: 779 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
491 entries across 491 versions & 5 rubygems