Class: Snapshot::DependencyChecker

Inherits:
Object
  • Object
show all
Defined in:
lib/snapshot/dependency_checker.rb

Class Method Summary collapse

Class Method Details

.check_dependenciesObject



3
4
5
6
7
8
# File 'lib/snapshot/dependency_checker.rb', line 3

def self.check_dependencies
  self.check_xcode_select
  self.check_simulators
  self.check_xctool
  self.check_for_automation_subfolder
end

.check_for_automation_subfolderObject



46
47
48
49
50
# File 'lib/snapshot/dependency_checker.rb', line 46

def self.check_for_automation_subfolder
  if File.directory?"./Automation" or File.exists?"./Automation"
    raise "Seems like you have an 'Automation' folder in the current directory. You need to delete/rename it!".red
  end
end

.check_simulatorsObject



21
22
23
24
25
26
27
28
29
30
# File 'lib/snapshot/dependency_checker.rb', line 21

def self.check_simulators
  Helper.log.debug "Found #{Simulators.available_devices.count} simulators."
  if Simulators.available_devices.count < 1
    Helper.log.fatal '#############################################################'
    Helper.log.fatal "# You have to add new simulators using Xcode"
    Helper.log.fatal "# Xcode => Window => Devices"
    Helper.log.fatal '#############################################################'
    raise "Create the new simulators and run this script again"
  end
end

.check_xcode_selectObject



10
11
12
13
14
15
16
17
18
19
# File 'lib/snapshot/dependency_checker.rb', line 10

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

.check_xctoolObject



36
37
38
39
40
41
42
43
44
# File 'lib/snapshot/dependency_checker.rb', line 36

def self.check_xctool
  if not self.xctool_installed?
    Helper.log.error '#############################################################'
    Helper.log.error "# xctool is recommended to build the apps"
    Helper.log.error "# Install it using 'brew install xctool'"
    Helper.log.error "# Falling back to xcode build instead "
    Helper.log.error '#############################################################'
  end
end

.xctool_installed?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/snapshot/dependency_checker.rb', line 32

def self.xctool_installed?
  return `which xctool`.length > 1
end