Sha256: 29e22b8070e66b4b6e90d959410e1bcd75e8bbbb4f6f0fa1bc0b25de49881bf3

Contents?: true

Size: 735 Bytes

Versions: 1

Compression:

Stored size: 735 Bytes

Contents

require 'fastlane_core/helper'
require 'fastlane_core/ui/ui'
require 'fastlane/boolean'

module Deliver
  class << self
    attr_accessor :cache

    def cache
      @cache ||= {}
      @cache
    end
  end

  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
  UI = FastlaneCore::UI
  Boolean = Fastlane::Boolean

  # Constant that captures the root Pathname for the project. Should be used for building paths to assets or other
  # resources that code needs to locate locally
  ROOT = Pathname.new(File.expand_path('../../..', __FILE__))

  DESCRIPTION = 'Upload screenshots, metadata and your app to the App Store using a single command'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fastlane_hotfix-2.187.0 deliver/lib/deliver/module.rb