Sha256: 1b39c4bcef9eeed80f63720ad25105ab0093b2c7fd19c29ad8f7abe55d331268
Contents?: true
Size: 1.48 KB
Versions: 23
Compression:
Stored size: 1.48 KB
Contents
module Deliver class DependencyChecker def self.check_dependencies self.check_phantom_js self.check_xcode_select end def self.check_phantom_js if `which phantomjs`.length == 0 # Missing brew dependency Helper.log.fatal '#############################################################' Helper.log.fatal "# You have to install phantomjs to use deliver" Helper.log.fatal "# phantomjs is used to control the iTunesConnect frontend" Helper.log.fatal "# Install Homebrew using http://brew.sh/" if `which brew`.length == 0 Helper.log.fatal "# Run 'brew update && brew install phantomjs' and start deliver again" Helper.log.fatal '#############################################################' raise "Run 'brew update && brew install phantomjs' and start deliver again" end end def self.check_xcode_select unless `xcode-select -v`.include?"xcode-select version " Helper.log.fatal '#############################################################' Helper.log.fatal "# You have to install the Xcode commdand line tools to use deliver" Helper.log.fatal "# Install the latest version of Xcode from the AppStore" Helper.log.fatal "# Run xcode-select --install to install the developer tools" Helper.log.fatal '#############################################################' raise "Run 'xcode-select --install' and start deliver again" end end end end
Version data entries
23 entries across 23 versions & 1 rubygems