module Match
Constants
- Boolean
- DESCRIPTION
- Helper
- ROOT
- UI
Public Class Methods
cert_type_sym(type)
click to toggle source
# File match/lib/match/module.rb, line 23 def self.cert_type_sym(type) type = type.to_s return :mac_installer_distribution if type == "mac_installer_distribution" return :developer_id_installer if type == "developer_id_installer" return :developer_id_application if type == "developer_id" return :enterprise if type == "enterprise" return :development if type == "development" return :distribution if ["adhoc", "appstore", "distribution"].include?(type) raise "Unknown cert type: '#{type}'" end
environments()
click to toggle source
# File match/lib/match/module.rb, line 11 def self.environments return %w(appstore adhoc development enterprise developer_id mac_installer_distribution) end
profile_type_sym(type)
click to toggle source
# File match/lib/match/module.rb, line 19 def self.profile_type_sym(type) return type.to_sym end
storage_modes()
click to toggle source
# File match/lib/match/module.rb, line 15 def self.storage_modes return %w(git google_cloud s3) end