class Fastlane::Actions::RollbarProguardUploadAction

Public Class Methods

authors() click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 22
def self.authors
  ['Evgrafov Denis']
end
available_options() click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 35
def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :api_key, description: 'Rollbar API key', optional: false, type: String),
    FastlaneCore::ConfigItem.new(key: :proguard_path, description: 'Proguard mapping path', optional: false, type: String),
    FastlaneCore::ConfigItem.new(key: :code_version, description: 'Code version', optional: false, type: String),
    FastlaneCore::ConfigItem.new(key: :environment, description: 'Environment', optional: false, type: String),
  ]
end
description() click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 18
def self.description
  'Helps to upload Proguard mappings to Rollbar'
end
details() click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 30
def self.details
  # Optional:
  'Helps to upload Proguard mappings to Rollbar'
end
is_supported?(platform) click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 44
def self.is_supported?(platform)
  # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
  # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
  #
  %i[ios android].include?(platform)
  true
end
return_value() click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 26
def self.return_value
  # If your method provides a return value, you can describe here what it does
end
run(params) click to toggle source
# File lib/fastlane/plugin/rollbar/actions/rollbar_proguard_upload_action.rb, line 9
def self.run(params)
  Helper::RollbarHelper.upload_proguard(
    params[:api_key],
    params[:proguard_path],
    params[:code_version],
    params[:environment],
  )
end