Sha256: f2339caacf7f5acd46d0e7c34fbbf74233f131837823b59fc87ff1a96ec1d382
Contents?: true
Size: 799 Bytes
Versions: 323
Compression:
Stored size: 799 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" def self.environments return %w(appstore adhoc development enterprise) end def self.storage_modes return %w(git google_cloud) 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
323 entries across 323 versions & 2 rubygems