Class: Fastlane::Actions::OptOutUsageAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/opt_out_usage.rb

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, authors, available_options, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text

Class Method Details

.authorObject



22
23
24
# File 'lib/fastlane/actions/opt_out_usage.rb', line 22

def self.author
  "KrauseFx"
end

.categoryObject



36
37
38
# File 'lib/fastlane/actions/opt_out_usage.rb', line 36

def self.category
  :misc
end

.descriptionObject



9
10
11
# File 'lib/fastlane/actions/opt_out_usage.rb', line 9

def self.description
  "This will stop uploading the information which actions were run"
end

.detailsObject



13
14
15
16
17
18
19
20
# File 'lib/fastlane/actions/opt_out_usage.rb', line 13

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

.example_codeObject



30
31
32
33
34
# File 'lib/fastlane/actions/opt_out_usage.rb', line 30

def self.example_code
  [
    'opt_out_usage'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/fastlane/actions/opt_out_usage.rb', line 26

def self.is_supported?(platform)
  true
end

.run(params) ⇒ Object



4
5
6
7
# File 'lib/fastlane/actions/opt_out_usage.rb', line 4

def self.run(params)
  ENV['FASTLANE_OPT_OUT_USAGE'] = "YES"
  UI.message("Disabled upload of used actions")
end