Sha256: 6b8fa66a208f8db40b1921fe2c67ccc53fcba71dcf926fc39f9f6437f4374191
Contents?: true
Size: 755 Bytes
Versions: 37
Compression:
Stored size: 755 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 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
37 entries across 37 versions & 1 rubygems