Sha256: 8e018997f5c305892361df947bd64a9139d025c9486773c7549a17aab9484c97
Contents?: true
Size: 759 Bytes
Versions: 111
Compression:
Stored size: 759 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 def self.is_supported?(platform) true end end end end
Version data entries
111 entries across 111 versions & 1 rubygems