Module: Match

Defined in:
match/lib/match/nuke.rb,
match/lib/match/setup.rb,
match/lib/match/utils.rb,
match/lib/match/module.rb,
match/lib/match/runner.rb,
match/lib/match/migrate.rb,
match/lib/match/options.rb,
match/lib/match/storage.rb,
match/lib/match/generator.rb,
match/lib/match/encryption.rb,
match/lib/match/table_printer.rb,
match/lib/match/change_password.rb,
match/lib/match/spaceship_ensure.rb,
match/lib/match/storage/interface.rb,
match/lib/match/commands_generator.rb,
match/lib/match/encryption/openssl.rb,
match/lib/match/storage/git_storage.rb,
match/lib/match/encryption/interface.rb,
match/lib/match/storage/google_cloud_storage.rb

Defined Under Namespace

Modules: Encryption, Storage Classes: ChangePassword, CommandsGenerator, Generator, Migrate, Nuke, Options, Runner, Setup, SpaceshipEnsure, TablePrinter, Utils

Constant Summary collapse

Helper =

you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore

FastlaneCore::Helper
UI =
FastlaneCore::UI
ROOT =
Pathname.new(File.expand_path('../../..', __FILE__))
DESCRIPTION =
"Easily sync your certificates and profiles across your team"

Class Method Summary collapse

Class Method Details

.cert_type_sym(type) ⇒ Object



21
22
23
24
25
26
# File 'match/lib/match/module.rb', line 21

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

.environmentsObject



9
10
11
# File 'match/lib/match/module.rb', line 9

def self.environments
  return %w(appstore adhoc development enterprise)
end

.profile_type_sym(type) ⇒ Object



17
18
19
# File 'match/lib/match/module.rb', line 17

def self.profile_type_sym(type)
  return type.to_sym
end

.storage_modesObject



13
14
15
# File 'match/lib/match/module.rb', line 13

def self.storage_modes
  return %w(git google_cloud)
end