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

Version Path
fastlane-2.94.0.beta.20180428050023 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.94.0.beta.20180427050031 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.94.0.beta.20180426050049 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb