Sha256: b8f642b310cef15065288302e51dbfede4c74e17e76679bb10eda62f60206d5b

Contents?: true

Size: 745 Bytes

Versions: 178

Compression:

Stored size: 745 Bytes

Contents

require 'fastlane_core/helper'

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

178 entries across 178 versions & 1 rubygems

Version Path
fastlane-2.105.2 match/lib/match/module.rb
fastlane-2.105.1 match/lib/match/module.rb
fastlane-2.104.0 match/lib/match/module.rb
fastlane-2.103.1 match/lib/match/module.rb
fastlane-2.103.0 match/lib/match/module.rb
fastlane-2.102.0 match/lib/match/module.rb
fastlane-2.101.1 match/lib/match/module.rb
fastlane-2.101.0 match/lib/match/module.rb
fastlane-2.100.1 match/lib/match/module.rb
fastlane-2.100.0 match/lib/match/module.rb
fastlane-2.99.1 match/lib/match/module.rb
fastlane-2.99.0 match/lib/match/module.rb
fastlane-2.98.0 match/lib/match/module.rb
fastlane-2.97.0 match/lib/match/module.rb
fastlane-2.96.1 match/lib/match/module.rb
fastlane-2.96.0 match/lib/match/module.rb
fastlane-2.96.0.beta.20180521050117 match/lib/match/module.rb
fastlane-2.96.0.beta.20180520050019 match/lib/match/module.rb
fastlane-2.96.0.beta.20180519050103 match/lib/match/module.rb
fastlane-2.96.0.beta.20180518050116 match/lib/match/module.rb