precheck/lib/precheck/module.rb in fastlane-2.188.0 vs precheck/lib/precheck/module.rb in fastlane-2.189.0

- old
+ new

@@ -1,7 +1,8 @@ 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 @@ -11,9 +12,10 @@ 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'