Commit aae73787 authored by Boris Bügling's avatar Boris Bügling

Fix linting with Xcode 8 beta

- Uses 'iPhone 5' for linting iOS projects, because there is no 4s
  anymore
- Uses an updated version of `fourflusher` which can parse two-digit OS
  versions (hello iOS 10.0)
parent 21d540ef
...@@ -43,7 +43,7 @@ Gem::Specification.new do |s| ...@@ -43,7 +43,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'activesupport', '>= 4.0.2' s.add_runtime_dependency 'activesupport', '>= 4.0.2'
s.add_runtime_dependency 'colored', '~> 1.2' s.add_runtime_dependency 'colored', '~> 1.2'
s.add_runtime_dependency 'escape', '~> 0.0.4' s.add_runtime_dependency 'escape', '~> 0.0.4'
s.add_runtime_dependency 'fourflusher', '~> 0.3.0' s.add_runtime_dependency 'fourflusher', '~> 0.3.2'
s.add_runtime_dependency 'nap', '~> 1.0' s.add_runtime_dependency 'nap', '~> 1.0'
s.add_development_dependency 'bacon', '~> 1.1' s.add_development_dependency 'bacon', '~> 1.1'
......
...@@ -722,7 +722,7 @@ module Pod ...@@ -722,7 +722,7 @@ module Pod
case consumer.platform_name case consumer.platform_name
when :ios when :ios
command += %w(CODE_SIGN_IDENTITY=- -sdk iphonesimulator) command += %w(CODE_SIGN_IDENTITY=- -sdk iphonesimulator)
command += Fourflusher::SimControl.new.destination('iPhone 4s', deployment_target) command += Fourflusher::SimControl.new.destination('iPhone 5', deployment_target)
when :watchos when :watchos
command += %w(CODE_SIGN_IDENTITY=- -sdk watchsimulator) command += %w(CODE_SIGN_IDENTITY=- -sdk watchsimulator)
command += Fourflusher::SimControl.new.destination('Apple Watch - 38mm', deployment_target) command += Fourflusher::SimControl.new.destination('Apple Watch - 38mm', deployment_target)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment