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

Version Path
fastlane-2.74.0.beta.20180106010004 match/lib/match.rb
fastlane-2.73.0 match/lib/match.rb
fastlane-2.73.0.beta.20180105010003 match/lib/match.rb
fastlane-2.73.0.beta.20180104010004 match/lib/match.rb
fastlane-2.73.0.beta.20180103010003 match/lib/match.rb
fastlane-2.72.0 match/lib/match.rb
fastlane-2.72.0.beta.20180102010003 match/lib/match.rb
fastlane-2.72.0.beta.20180101010003 match/lib/match.rb
fastlane-2.72.0.beta.20171231010003 match/lib/match.rb
fastlane-2.71.1 match/lib/match.rb
fastlane-2.72.0.beta.20171230010003 match/lib/match.rb
fastlane-2.72.0.beta.20171229010003 match/lib/match.rb
fastlane-2.72.0.beta.20171228010004 match/lib/match.rb
fastlane-2.71.0 match/lib/match.rb
fastlane-2.71.0.beta.20171227010004 match/lib/match.rb
fastlane-2.71.0.beta.20171226010004 match/lib/match.rb
fastlane-2.71.0.beta.20171225010003 match/lib/match.rb
fastlane-2.71.0.beta.20171224010003 match/lib/match.rb
fastlane-2.71.0.beta.20171223010003 match/lib/match.rb
fastlane-2.71.0.beta.20171222010003 match/lib/match.rb