module Match

Constants

DESCRIPTION
Helper
ROOT
UI

Public Class Methods

cert_type_sym(type) click to toggle source
# File match/lib/match/module.rb, line 21
def self.cert_type_sym(type)
  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 9
def self.environments
  return %w(appstore adhoc development enterprise)
end
profile_type_sym(type) click to toggle source
# File match/lib/match/module.rb, line 17
def self.profile_type_sym(type)
  return type.to_sym
end
storage_modes() click to toggle source
# File match/lib/match/module.rb, line 13
def self.storage_modes
  return %w(git google_cloud)
end