Sha256: 172ccaaf8eac94352e302d1a2357048c8a71c0b2e40e7461c77b0e5ee1c3a511

Contents?: true

Size: 736 Bytes

Versions: 8

Compression:

Stored size: 736 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 self.enterprise?
    return envs
  end

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
match-0.6.2 lib/match.rb
match-0.6.1 lib/match.rb
match-0.6.0 lib/match.rb
match-0.5.0 lib/match.rb
match-0.4.0 lib/match.rb
match-0.3.0 lib/match.rb
match-0.2.5 lib/match.rb
match-0.2.4 lib/match.rb