Sha256: f2339caacf7f5acd46d0e7c34fbbf74233f131837823b59fc87ff1a96ec1d382

Contents?: true

Size: 799 Bytes

Versions: 323

Compression:

Stored size: 799 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"

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

  def self.storage_modes
    return %w(git google_cloud)
  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

323 entries across 323 versions & 2 rubygems

Version Path
fastlane-2.132.0.beta.20190929200020 match/lib/match/module.rb
fastlane-2.132.0.beta.20190928200106 match/lib/match/module.rb
fastlane-2.132.0.beta.20190927200017 match/lib/match/module.rb
fastlane-2.132.0.beta.20190926200023 match/lib/match/module.rb
fastlane-2.132.0.beta.20190925200108 match/lib/match/module.rb
fastlane-2.132.0.beta.20190924200030 match/lib/match/module.rb
fastlane-2.132.0.beta.20190923200017 match/lib/match/module.rb
fastlane-2.132.0.beta.20190922200014 match/lib/match/module.rb
fastlane-2.132.0.beta.20190921200021 match/lib/match/module.rb
fastlane-2.132.0.beta.20190920200012 match/lib/match/module.rb
fastlane-2.132.0.beta.20190919200100 match/lib/match/module.rb
fastlane-2.132.0.beta.20190918200023 match/lib/match/module.rb
fastlane-2.132.0.beta.20190917200011 match/lib/match/module.rb
fastlane-2.132.0.beta.20190916200055 match/lib/match/module.rb
fastlane-2.132.0.beta.20190915200038 match/lib/match/module.rb
fastlane-2.132.0.beta.20190914200034 match/lib/match/module.rb
fastlane-2.132.0.beta.20190913200058 match/lib/match/module.rb
fastlane-2.132.0.beta.20190912200052 match/lib/match/module.rb
fastlane-2.131.0 match/lib/match/module.rb
fastlane-2.131.0.beta.20190911200010 match/lib/match/module.rb