module ErrorMessage
Constants
- FILE_EXTNAME_NOT_VALID
- FILE_NOT_FOUND
- INVALID_PATH
- MISSING_BASE_URL
- MISSING_CREDENTIALS_PASSWORD
- MISSING_CREDENTIALS_USERNAME
Public Class Methods
artifact_extname_not_valid(extname)
click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/mobileiron_error_message.rb, line 17 def self.artifact_extname_not_valid(extname) "The artifact ext '#{extname}' not valid! Make sure that file extname *.apk or *.ipa and try again" end
artifact_not_found(artifact_path)
click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/mobileiron_error_message.rb, line 9 def self.artifact_not_found(artifact_path) "Artifact(s) not found in path: #{artifact_path}. Please check that the file exists and try again" end
url_not_available(url)
click to toggle source
# File lib/fastlane/plugin/mobileiron/helper/mobileiron_error_message.rb, line 13 def self.url_not_available(url) "URL not available: #{url}. Please check the network connection and try again" end