Sha256: 7824260657d6761ddba0d17fa254c7696f707ef0bedbe3099b501995cb01b944
Contents?: true
Size: 696 Bytes
Versions: 4
Compression:
Stored size: 696 Bytes
Contents
module Fastlane module Actions class OptOutUsageAction < Action def self.run(params) ENV['FASTLANE_OPT_OUT_USAGE'] = "YES" Helper.log.info "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 share the used actions. ", "No personal information is shard. More information available on ", "https://github.com/fastlane/enhancer\n", "Using this action you can opt out" ].join('') end def self.author "KrauseFx" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems