class Fastlane::Actions::AppcenterUploadAction::Options

Public Class Methods

strict() click to toggle source
# File lib/fastlane/plugin/appcenter/actions/appcenter_upload_action.rb, line 729
def self.strict
  @strict
end
strict_mode(mode) click to toggle source
# File lib/fastlane/plugin/appcenter/actions/appcenter_upload_action.rb, line 724
def self.strict_mode(mode)
  @strict = mode.to_s == "true"
  UI.message("Enabled strict mode") if @strict
end