Sha256: 7d8b985845bd701c69384a5f1559016d9096d8bf85b615e8629e023f2c1d2f32

Contents?: true

Size: 1.03 KB

Versions: 139

Compression:

Stored size: 1.03 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 stacktrace is sanitized so no personal information is sent.",
          "Learn more at https://github.com/fastlane/fastlane#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

139 entries across 139 versions & 1 rubygems

Version Path
fastlane-2.54.0.beta.20170822010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170821010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170820010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170819010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170818010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170817010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170816010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170815010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170814010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170813010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170812010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.54.0.beta.20170811010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.53.1 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.53.0 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.53.0.beta.20170810010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.52.0 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.52.0.beta.20170809010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.52.0.beta.20170808010002 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.51.0 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb
fastlane-2.51.0.beta.20170807010003 fastlane/lib/fastlane/actions/opt_out_crash_reporting.rb