Sha256: ffe8d42ae50934080f73233dfc2dfc50689aff86b7983f1d352abbd28a6ee4d0
Contents?: true
Size: 714 Bytes
Versions: 571
Compression:
Stored size: 714 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 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
571 entries across 571 versions & 2 rubygems