Sha256: c4aa631c9a9fd74c47eff9f5da99b8de21849d28cc9c13cc321d76dcd8e6a7e8
Contents?: true
Size: 984 Bytes
Versions: 333
Compression:
Stored size: 984 Bytes
Contents
module Fastlane module Actions class OptOutUsageAction < Action def self.run(params) ENV['FASTLANE_OPT_OUT_USAGE'] = "YES" UI.message("Disabled upload of used actions") end def self.description "This will stop uploading the information which actions were run" end def self.details [ "By default, fastlane will track what actions are being used", "No personal/sensitive information is recorded.", "Learn more at https://github.com/fastlane/fastlane#metrics", "Add `opt_out_usage` at the top of your Fastfile to disable metrics collection" ].join(' ') end def self.author "KrauseFx" end def self.is_supported?(platform) true end def self.example_code [ 'opt_out_usage # add this to the top of your Fastfile' ] end def self.category :misc end end end end
Version data entries
333 entries across 333 versions & 1 rubygems