Sha256: ff20a75a55e729340ff63de3eceb109a8f0595b2095818bb8c510d77662bb864
Contents?: true
Size: 804 Bytes
Versions: 522
Compression:
Stored size: 804 Bytes
Contents
require 'fastlane_core/helper' require 'fastlane/boolean' require_relative 'detect_values' module Gym class << self attr_accessor :config attr_accessor :project attr_accessor :cache def config=(value) @config = value DetectValues.set_additional_default_values @cache = {} end def gymfile_name "Gymfile" end def init_libs # Import all the fixes require 'gym/xcodebuild_fixes/generic_archive_fix' end 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__)) DESCRIPTION = "Building your iOS apps has never been easier" Gym.init_libs end
Version data entries
522 entries across 522 versions & 2 rubygems