Sha256: c9f5c62b5b40fb786be0a669ed963bf6dd82ce8399d9d0fceadfd00efd9787d4
Contents?: true
Size: 1.04 KB
Versions: 432
Compression:
Stored size: 1.04 KB
Contents
require 'match/options' require 'match/runner' require 'match/nuke' require 'match/utils' require 'match/table_printer' require 'match/git_helper' require 'match/generator' require 'match/setup' require 'match/encrypt' require 'match/spaceship_ensure' require 'match/change_password' require 'fastlane_core' require 'terminal-table' require 'spaceship' 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
432 entries across 432 versions & 1 rubygems