Sha256: 1ea1f573e9d224ea72bdae802efd24e9da2fb6d001fed1d52d84772484179f39
Contents?: true
Size: 950 Bytes
Versions: 120
Compression:
Stored size: 950 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 information is shared. More information available on", "https://github.com/fastlane/enhancer", "Add `opt_out_usage` at the top of your Fastfile" ].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
120 entries across 120 versions & 1 rubygems