Sha256: 6d411675c970563c9b307c71864aa2574d72bc8c951e6415076f6acd0604a9ae

Contents?: true

Size: 685 Bytes

Versions: 4

Compression:

Stored size: 685 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 '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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
match-0.2.3 lib/match.rb
match-0.2.2 lib/match.rb
match-0.2.1 lib/match.rb
match-0.2.0 lib/match.rb