require 'fastlane_core/helper' require 'fastlane/boolean' module Cert # Use this to just setup the configuration attribute and set it later somewhere else class << self attr_accessor :config end Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore UI = FastlaneCore::UI Boolean = Fastlane::Boolean ROOT = Pathname.new(File.expand_path('../../..', __FILE__)) ENV['FASTLANE_TEAM_ID'] ||= ENV["CERT_TEAM_ID"] end