Sha256: 1d4e9c9cf0ab9ec25275df25da11d9681b9cff65a9c842f1e7d756984b37cf68
Contents?: true
Size: 889 Bytes
Versions: 32
Compression:
Stored size: 889 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 def self.example_code [ 'opt_out_usage' ] end def self.category :misc end end end end
Version data entries
32 entries across 32 versions & 1 rubygems