Sha256: 6b3f1cbdf8cb1076849e03901eccdbc5e83239a06bc09f54a6fed35849c52de1

Contents?: true

Size: 542 Bytes

Versions: 4

Compression:

Stored size: 542 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_FOLDER = "/tmp/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

4 entries across 4 versions & 1 rubygems

Version Path
fastlane-2.74.1 pem/lib/pem/module.rb
fastlane-2.74.0 pem/lib/pem/module.rb
fastlane-2.74.0.beta.20180108010004 pem/lib/pem/module.rb
fastlane-2.74.0.beta.20180107010004 pem/lib/pem/module.rb