Sha256: 49e02b63b442638e50c91afed07badf53779cb671bbc88d8d153bcdc35ede363
Contents?: true
Size: 635 Bytes
Versions: 3
Compression:
Stored size: 635 Bytes
Contents
module SimCtl module Xcode class Path class << self def home @home ||= `xcode-select -p`.chomp end def sdk_root File.join(home, 'Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk') end def runtime_profiles if Xcode::Version.gte? '9.0' File.join(home, 'Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/') else File.join(home, 'Platforms/iPhoneSimulator.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/') end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
simctl-1.6.5 | lib/simctl/xcode/path.rb |
simctl-1.6.4 | lib/simctl/xcode/path.rb |
simctl-1.6.3 | lib/simctl/xcode/path.rb |