Sha256: e44f46cb86fa9dd8b35fcd6f1d2251c20e1dd48bb27a5345d3ed24ca2a902b6d
Contents?: true
Size: 708 Bytes
Versions: 61
Compression:
Stored size: 708 Bytes
Contents
require 'fastlane_core/helper' require 'fastlane_core/ui/ui' require 'fastlane/boolean' module Precheck # Use this to just setup the configuration attribute and set it later somewhere else class << self attr_accessor :config def precheckfile_name "Precheckfile" 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__)) ENV['APP_IDENTIFIER'] ||= ENV["PRECHECK_APP_IDENTIFIER"] DESCRIPTION = 'Check your app using a community driven set of App Store review rules to avoid being rejected' end
Version data entries
61 entries across 61 versions & 4 rubygems