Sha256: f2eaed714f307b7e9c17b2eb125462ab1f8e9de9e949cc9f356c40fe8512f6a8

Contents?: true

Size: 672 Bytes

Versions: 3

Compression:

Stored size: 672 Bytes

Contents

require 'fastlane_core/helper'
require 'fastlane_core/ui/ui'

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
  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

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 precheck/lib/precheck/module.rb
fastlane_hotfix-2.165.0 precheck/lib/precheck/module.rb
fastlane_hotfix-2.187.0 precheck/lib/precheck/module.rb