Sha256: 81a872c36aeed550e9380658912e8d59d1c321de8d8e76f96ab24151b8b6b446
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
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 developer_id mac_installer_distribution) end def self.storage_modes return %w(git google_cloud s3) end def self.profile_type_sym(type) return type.to_sym end 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 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fastlane_hotfix-2.187.0 | match/lib/match/module.rb |