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
  return if Helper.test?

  self.check_xcode_select
  self.check_simctl
end

.check_simctlObject



44
45
46
47
48
# File 'lib/snapshot/dependency_checker.rb', line 44

def self.check_simctl
  unless `xcrun simctl`.include? "openurl"
    raise "Could not find `xcrun simctl`. Make sure you have the latest version of Xcode and Mac OS installed.".red
  end
end

.check_simulatorsObject



31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/snapshot/dependency_checker.rb', line 31

def self.check_simulators
  Helper.log.debug "Found #{FastlaneCore::Simulator.all.count} simulators." if $verbose
  if FastlaneCore::Simulator.all.count == 0
    Helper.log.fatal '#############################################################'
    Helper.log.fatal "# You have to add new simulators using Xcode"
    Helper.log.fatal "# You can let snapshot create new simulators: 'snapshot reset_simulators'"
    Helper.log.fatal "# Manually: Xcode => Window => Devices"
    Helper.log.fatal "# Please run `instruments -s` to verify your xcode path"
    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
20
21
22
23
24
25
26
27
28
29
# 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 snapshot"
    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 snapshot again"
  end

  if Snapshot::LatestIosVersion.version.to_f < 9 # to_f is bad, but should be good enough
    Helper.log.fatal '#############################################################'
    Helper.log.fatal "# Your xcode-select Xcode version is below 9.0"
    Helper.log.fatal "# To use snapshot 1.0 and above you need at least iOS 9"
    Helper.log.fatal "# Set the path to the Xcode version that supports UI Tests"
    Helper.log.fatal "# or downgrade to versions older than snapshot 1.0"
    Helper.log.fatal '#############################################################'
    raise "Run 'sudo xcode-select -s /Applications/Xcode-beta.app'"
  end
end