Sha256: 4afe857c47559fa8498023938ed2e3dc1aeec68f87be405608f9339c84f7bdb4

Contents?: true

Size: 543 Bytes

Versions: 22

Compression:

Stored size: 543 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

22 entries across 22 versions & 1 rubygems

Version Path
fastlane-2.75.0 pem/lib/pem/module.rb
fastlane-2.75.0.beta.20180109010003 pem/lib/pem/module.rb