Module: Match

Defined in:
lib/match.rb,
lib/match/nuke.rb,
lib/match/setup.rb,
lib/match/utils.rb,
lib/match/runner.rb,
lib/match/encrypt.rb,
lib/match/options.rb,
lib/match/version.rb,
lib/match/generator.rb,
lib/match/git_helper.rb,
lib/match/table_printer.rb,
lib/match/change_password.rb,
lib/match/spaceship_ensure.rb

Defined Under Namespace

Classes: ChangePassword, Encrypt, Generator, GitHelper, 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
VERSION =
"0.2.5"
DESCRIPTION =
"Easily sync your certificates and profiles across your team using git"

Class Method Summary collapse

Class Method Details

.enterprise?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/match.rb', line 28

def self.enterprise?
  ENV["MATCH_FORCE_ENTERPRISE"]
end

.environmentsObject



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

def self.environments
  envs = %w(appstore adhoc development)
  envs << "enterprise" if self.enterprise?
  return envs
end