Sha256: 415431d4a8435f01b5c6dfc63deda0c18fb2df2cd7dcf2bebe8c3fb6e13e9237
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
require "fastlane_core" module Pilot class Manager def start(options) return if @config # to not login multiple times @config = options login end def login config[:username] ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id) Helper.log.info "Login to iTunes Connect (#{config[:username]})" Spaceship::Tunes.login(config[:username]) Helper.log.info "Login successful" end # The app object we're currently using def app @apple_id ||= fetch_app_id unless (@app ||= Spaceship::Application.find(@apple_id)) raise "Could not find app with #{(config[:apple_id] || config[:app_identifier])}" end return @app end # Access the current configuration def config @config end # Config Related ################ def fetch_app_id return @apple_id if @apple_id config[:app_identifier] = fetch_app_identifier if config[:app_identifier] @app ||= Spaceship::Application.find(config[:app_identifier]) raise "Couldn't find app '#{config[:app_identifier]}' on the account of '#{config[:username]}'".red unless @app app_id ||= @app.apple_id end app_id ||= ask("Could not automatically find the app ID, please enter it here (e.g. 956814360): ") return app_id end def fetch_app_identifier result = config[:app_identifier] result ||= FastlaneCore::IpaFileAnalyser.fetch_app_identifier(config[:ipa]) result ||= ask("Please enter the app's bundle identifier: ") return result end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pilot-0.1.7 | lib/pilot/manager.rb |