Sha256: b8f642b310cef15065288302e51dbfede4c74e17e76679bb10eda62f60206d5b
Contents?: true
Size: 745 Bytes
Versions: 178
Compression:
Stored size: 745 Bytes
Contents
require 'fastlane_core/helper' module Match Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore UI = FastlaneCore::UI ROOT = Pathname.new(File.expand_path('../../..', __FILE__)) DESCRIPTION = "Easily sync your certificates and profiles across your team using git" def self.environments return %w(appstore adhoc development enterprise) end def self.profile_type_sym(type) return type.to_sym end 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 end
Version data entries
178 entries across 178 versions & 1 rubygems