Sha256: 500d91261032cb31cf95ae8703a1b4395c147d28921538cb4db74ce6bbb26dbf

Contents?: true

Size: 795 Bytes

Versions: 6

Compression:

Stored size: 795 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
  ROOT = Pathname.new(File.expand_path('../..', __FILE__))

  def self.environments
    envs = %w(appstore adhoc development)
    envs << "enterprise" if self.enterprise?
    return envs
  end

  def self.enterprise?
    ENV["MATCH_FORCE_ENTERPRISE"]
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
match-0.9.0 lib/match.rb
match-0.8.1 lib/match.rb
match-0.8.0 lib/match.rb
match-0.7.0 lib/match.rb
match-0.6.4 lib/match.rb
match-0.6.3 lib/match.rb