Sha256: 03de702f48eeea5721c6f6a9cb8dcef17374b90f2a57ae34b57dee1f94085015
Contents?: true
Size: 711 Bytes
Versions: 68
Compression:
Stored size: 711 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
68 entries across 68 versions & 4 rubygems