Sha256: 422f8273bbfd625860010970c6e476c709ee1cf6078717f172ef1036bae0b9f8
Contents?: true
Size: 889 Bytes
Versions: 57
Compression:
Stored size: 889 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? return false unless Scan.project 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
57 entries across 57 versions & 4 rubygems