Sha256: 916042c49ab542faae66f4f70266e18b3f0d56c55e3b4b76ae836fea9c858654
Contents?: true
Size: 850 Bytes
Versions: 28
Compression:
Stored size: 850 Bytes
Contents
require 'fastlane_core/helper' require 'fastlane/boolean' require_relative 'detect_values' module Scan class << self attr_accessor :config attr_accessor :project attr_accessor :cache attr_accessor :devices def config=(value) @config = value DetectValues.set_additional_default_values @cache = {} end def scanfile_name "Scanfile" end def building_mac_catalyst_for_mac? Scan.project.supports_mac_catalyst? && Scan.config[:catalyst_platform] == "macos" 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 = "The easiest way to run tests of your iOS and Mac app" end
Version data entries
28 entries across 28 versions & 1 rubygems