Sha256: 85ff7758ec18b185225d5d2a7594ab04ae6ed2ca390acacc7aae5f084fba2608

Contents?: true

Size: 653 Bytes

Versions: 3

Compression:

Stored size: 653 Bytes

Contents

require 'match/version'
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 '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

  def self.environments
    envs = %w(appstore adhoc development)
    envs << "enterprise" if ENV["MATCH_FORCE_ENTERPRISE"]
    return envs
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
match-0.1.2 lib/match.rb
match-0.1.1 lib/match.rb
match-0.1.0 lib/match.rb