Sha256: 06489f9ea1d22d63cc195b27f68bd23a339f85ab9469491a02d1b055d969469f

Contents?: true

Size: 600 Bytes

Versions: 3

Compression:

Stored size: 600 Bytes

Contents

require 'fastlane_core/helper'

module PEM
  # Use this to just setup the configuration attribute and set it later somewhere else
  class << self
    attr_accessor :config
  end

  tmp_dir = Dir.tmpdir
  TMP_FOLDER = "#{tmp_dir}/fastlane/PEM/"
  FileUtils.mkdir_p(TMP_FOLDER)

  ENV['FASTLANE_TEAM_ID'] ||= ENV["PEM_TEAM_ID"]
  ENV['DELIVER_USER'] ||= ENV["PEM_USERNAME"]

  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__))
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 pem/lib/pem/module.rb
fastlane_hotfix-2.165.0 pem/lib/pem/module.rb
fastlane_hotfix-2.187.0 pem/lib/pem/module.rb