Sha256: 2a51c6ac7128e1ad4a5a391c1aa073306d74c8b559098a086a9a8f37944cce7e

Contents?: true

Size: 1.04 KB

Versions: 56

Compression:

Stored size: 1.04 KB

Contents

module Fastlane
  module Actions
    class OptOutCrashReportingAction < Action
      def self.run(params)
        ENV['FASTLANE_OPT_OUT_CRASH_REPORTING'] = "YES"
        UI.message("Disabled crash reporting")
      end

      def self.description
        "This will prevent reports from being uploaded when _fastlane_ crashes"
      end

      def self.details
        [
          "By default, fastlane will send a report when it crashes",
          "The stack trace is sanitized so no personal information is sent.",
          "Learn more at https://docs.fastlane.tools/actions/opt_out_crash_reporting/",
          "Add `opt_out_crash_reporting` at the top of your Fastfile to disable crash reporting"
        ].join(' ')
      end

      def self.authors
        ['mpirri', 'ohayon']
      end

      def self.is_supported?(platform)
        true
      end

      def self.example_code
        [
          'opt_out_crash_reporting # add this to the top of your Fastfile'
        ]
      end

      def self.category
        :misc
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
fastlane-2.85.0.beta.20180305050037 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.85.0.beta.20180304050031 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.85.0.beta.20180303050048 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.85.0.beta.20180302050035 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.84.0 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.84.0.beta.20180301050048 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.84.0.beta.20180228050122 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.84.0.beta.20180227050054 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.83.0 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.83.0.beta.20180226050016 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.83.0.beta.20180225050035 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.83.0.beta.20180224050047 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180223010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180222010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180221010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180220010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180219010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180218010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.82.0.beta.20180217010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb