Sha256: 1792e4c9b1a872143fbe765d58371f7bcf31c054d0a567f1b5bcaa286d620fe9
Contents?: true
Size: 856 Bytes
Versions: 12
Compression:
Stored size: 856 Bytes
Contents
require 'fastlane_core/helper' require 'fastlane/boolean' module Match Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore UI = FastlaneCore::UI Boolean = Fastlane::Boolean 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
12 entries across 12 versions & 1 rubygems