Skip to content

Commit 05b42ef

Browse files
authored
Merge pull request #32 from Swinject/swift4
Swift 4 release
2 parents caac437 + 61f0d86 commit 05b42ef

File tree

323 files changed

+6403
-3132
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+6403
-3132
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode8.3
2+
osx_image: xcode9
33
env:
44
global:
55
- LC_CTYPE=en_US.UTF-8
@@ -25,12 +25,15 @@ matrix:
2525
- pod lib lint
2626
- env: JOB="XCODE" DEST="OS=8.4,name=iPhone 5s" SCHEME="SwinjectAutoregistration-iOS" SDK="iphonesimulator" ACTION="test"
2727
- env: JOB="XCODE" DEST="OS=9.3,name=iPhone 6" SCHEME="SwinjectAutoregistration-iOS" SDK="iphonesimulator" ACTION="test"
28-
- env: JOB="XCODE" DEST="OS=10.1,name=iPhone 7 Plus" SCHEME="SwinjectAutoregistration-iOS" SDK="iphonesimulator" ACTION="test"
28+
- env: JOB="XCODE" DEST="OS=10.3.1,name=iPhone 7 Plus" SCHEME="SwinjectAutoregistration-iOS" SDK="iphonesimulator" ACTION="test"
29+
- env: JOB="XCODE" DEST="OS=11.0,name=iPhone 8 Plus" SCHEME="SwinjectAutoregistration-iOS" SDK="iphonesimulator" ACTION="test"
2930
- env: JOB="XCODE" DEST="arch=x86_64" SCHEME="SwinjectAutoregistration-OSX" SDK="macosx" ACTION="test"
3031
- env: JOB="XCODE" DEST="OS=9.2,name=Apple TV 1080p" SCHEME="SwinjectAutoregistration-tvOS" SDK="appletvsimulator" ACTION="test"
31-
- env: JOB="XCODE" DEST="OS=10.0,name=Apple TV 1080p" SCHEME="SwinjectAutoregistration-tvOS" SDK="appletvsimulator" ACTION="test"
32+
- env: JOB="XCODE" DEST="OS=10.2,name=Apple TV 1080p" SCHEME="SwinjectAutoregistration-tvOS" SDK="appletvsimulator" ACTION="test"
33+
- env: JOB="XCODE" DEST="OS=11.0,name=Apple TV 1080p" SCHEME="SwinjectAutoregistration-tvOS" SDK="appletvsimulator" ACTION="test"
3234
- env: JOB="XCODE" DEST="OS=2.2,name=Apple Watch - 42mm" SCHEME="SwinjectAutoregistration-watchOS" SDK="watchsimulator" ACTION="build"
3335
- env: JOB="XCODE" DEST="OS=3.2,name=Apple Watch - 42mm" SCHEME="SwinjectAutoregistration-watchOS" SDK="watchsimulator" ACTION="build"
36+
- env: JOB="XCODE" DEST="OS=4.0,name=Apple Watch - 42mm" SCHEME="SwinjectAutoregistration-watchOS" SDK="watchsimulator" ACTION="build"
3437
script:
3538
- set -o pipefail
3639
- open -b com.apple.iphonesimulator # Workaround https://github.com/travis-ci/travis-ci/issues/3040

Cartfile.private

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "Quick/Quick"
2-
github "Quick/Nimble"
3-
github "jspahrsummers/xcconfigs"
1+
github "Quick/Quick" ~> 1.1
2+
github "Quick/Nimble" ~> 7.0
3+
github "jspahrsummers/xcconfigs" ~> 0.10

Cartfile.resolved

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github "Quick/Nimble" "v7.0.0"
2-
github "Quick/Quick" "v1.1.0"
3-
github "Swinject/Swinject" "2.1.0"
1+
github "Quick/Nimble" "v7.0.2"
2+
github "Quick/Quick" "v1.2.0"
3+
github "Swinject/Swinject" "2.1.1"
44
github "jspahrsummers/xcconfigs" "0.10"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
disabled_rules:
2-
- line_length
32
- todo
43
- variable_name
54
- force_try
6-
- function_parameter_count
75
- force_cast
8-
- type_name
9-
- large_tuple
106

117
included:
128
- Sources
@@ -17,3 +13,7 @@ excluded:
1713

1814
trailing_comma:
1915
mandatory_comma: true
16+
17+
line_length:
18+
ignores_comments: true
19+
ignores_function_declarations: true

Carthage/Checkouts/Nimble/.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
osx_image: xcode8
1+
osx_image: xcode8.3
22
language: generic
33
matrix:
44
include:
@@ -11,8 +11,14 @@ matrix:
1111
env: TYPE=tvos NIMBLE_RUNTIME_TVOS_SDK_VERSION=10.0
1212
- os: osx
1313
env: TYPE=macos
14+
- os: osx
15+
env: TYPE=macos
16+
osx_image: xcode9
17+
- os: osx
18+
env: TYPE=swiftpm
1419
- os: osx
1520
env: TYPE=swiftpm
21+
osx_image: xcode9
1622
- os: linux
1723
dist: trusty
1824
sudo: required

Carthage/Checkouts/Nimble/Nimble.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Nimble"
3-
s.version = "7.0.0"
3+
s.version = "7.0.2"
44
s.summary = "A Matcher Framework for Swift and Objective-C"
55
s.description = <<-DESC
66
Use Nimble to express the expected outcomes of Swift or Objective-C expressions. Inspired by Cedar.
@@ -44,6 +44,7 @@ Pod::Spec.new do |s|
4444
s.pod_target_xcconfig = {
4545
'ENABLE_BITCODE' => 'NO',
4646
'OTHER_LDFLAGS' => '-weak-lswiftXCTest',
47+
'OTHER_SWIFT_FLAGS' => '$(inherited) -suppress-warnings',
4748
'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks"',
4849
}
4950
end

Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@
164164
1F5DF1851BDCA0F500C3A531 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1C1968AB07008ED995 /* Equal.swift */; };
165165
1F5DF1861BDCA0F500C3A531 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 472FD1341B9E085700C7B8DA /* HaveCount.swift */; };
166166
1F5DF1871BDCA0F500C3A531 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDB4D5EC19FE43C200E9D9FE /* Match.swift */; };
167-
1F5DF1881BDCA0F500C3A531 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1D1968AB07008ED995 /* MatcherProtocols.swift */; };
168167
1F5DF1891BDCA0F500C3A531 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1E1968AB07008ED995 /* RaisesException.swift */; };
169168
1F5DF18A1BDCA0F500C3A531 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29EA59651B551EE6002D767E /* ThrowError.swift */; };
170169
1F5DF18B1BDCA0F500C3A531 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD251968AB07008ED995 /* Functional.swift */; };
@@ -296,8 +295,6 @@
296295
1FD8CD591968AB07008ED995 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1B1968AB07008ED995 /* EndWith.swift */; };
297296
1FD8CD5A1968AB07008ED995 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1C1968AB07008ED995 /* Equal.swift */; };
298297
1FD8CD5B1968AB07008ED995 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1C1968AB07008ED995 /* Equal.swift */; };
299-
1FD8CD5C1968AB07008ED995 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1D1968AB07008ED995 /* MatcherProtocols.swift */; };
300-
1FD8CD5D1968AB07008ED995 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1D1968AB07008ED995 /* MatcherProtocols.swift */; };
301298
1FD8CD5E1968AB07008ED995 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1E1968AB07008ED995 /* RaisesException.swift */; };
302299
1FD8CD5F1968AB07008ED995 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1E1968AB07008ED995 /* RaisesException.swift */; };
303300
1FD8CD6A1968AB07008ED995 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD261968AB07008ED995 /* Async.swift */; };
@@ -386,6 +383,9 @@
386383
CD79C9B51D2CC848004B6F9A /* ObjCUserDescriptionTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 965B0D081B62B8ED0005AE66 /* ObjCUserDescriptionTest.m */; };
387384
CD79C9B61D2CC848004B6F9A /* ObjCAllPassTest.m in Sources */ = {isa = PBXBuildFile; fileRef = DDEFAEB31A93CBE6005CA37A /* ObjCAllPassTest.m */; };
388385
CD79C9B71D2CC848004B6F9A /* ObjCSatisfyAnyOfTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B5358C11C39155600A23FAA /* ObjCSatisfyAnyOfTest.m */; };
386+
CDD80B831F2030790002CD65 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1D1968AB07008ED995 /* MatcherProtocols.swift */; };
387+
CDD80B841F20307A0002CD65 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1D1968AB07008ED995 /* MatcherProtocols.swift */; };
388+
CDD80B851F20307B0002CD65 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD8CD1D1968AB07008ED995 /* MatcherProtocols.swift */; };
389389
DA9E8C821A414BB9002633C2 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA9E8C811A414BB9002633C2 /* DSL+Wait.swift */; };
390390
DA9E8C831A414BB9002633C2 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA9E8C811A414BB9002633C2 /* DSL+Wait.swift */; };
391391
DD72EC641A93874A002F7651 /* AllPassTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD72EC631A93874A002F7651 /* AllPassTest.swift */; };
@@ -1170,33 +1170,33 @@
11701170
isa = PBXProject;
11711171
attributes = {
11721172
LastSwiftUpdateCheck = 0730;
1173-
LastUpgradeCheck = 0820;
1173+
LastUpgradeCheck = 0900;
11741174
ORGANIZATIONNAME = "Jeff Hui";
11751175
TargetAttributes = {
11761176
1F1A74281940169200FFFC47 = {
11771177
CreatedOnToolsVersion = 6.0;
1178-
LastSwiftMigration = 0800;
1178+
LastSwiftMigration = 0900;
11791179
};
11801180
1F1A74331940169200FFFC47 = {
11811181
CreatedOnToolsVersion = 6.0;
1182-
LastSwiftMigration = 0800;
1182+
LastSwiftMigration = 0900;
11831183
TestTargetID = 1F1A74281940169200FFFC47;
11841184
};
11851185
1F5DF1541BDCA0CE00C3A531 = {
11861186
CreatedOnToolsVersion = 7.1;
1187-
LastSwiftMigration = 0800;
1187+
LastSwiftMigration = 0900;
11881188
};
11891189
1F5DF15D1BDCA0CE00C3A531 = {
11901190
CreatedOnToolsVersion = 7.1;
1191-
LastSwiftMigration = 0800;
1191+
LastSwiftMigration = 0900;
11921192
};
11931193
1F925EAC195C0D6300ED456B = {
11941194
CreatedOnToolsVersion = 6.0;
1195-
LastSwiftMigration = 0800;
1195+
LastSwiftMigration = 0900;
11961196
};
11971197
1F925EB6195C0D6300ED456B = {
11981198
CreatedOnToolsVersion = 6.0;
1199-
LastSwiftMigration = 0800;
1199+
LastSwiftMigration = 0900;
12001200
TestTargetID = 1F925EAC195C0D6300ED456B;
12011201
};
12021202
A8F2B2541E79A4AB005BDD17 = {
@@ -1332,6 +1332,7 @@
13321332
1F12BEE01E7791B9006952EC /* CwlCatchException.m in Sources */,
13331333
AE7ADE451C80BF8000B94CD3 /* MatchError.swift in Sources */,
13341334
1FC494AA1C29CBA40010975C /* NimbleEnvironment.swift in Sources */,
1335+
CDD80B841F20307A0002CD65 /* MatcherProtocols.swift in Sources */,
13351336
1FD8CD5E1968AB07008ED995 /* RaisesException.swift in Sources */,
13361337
1FD8CD561968AB07008ED995 /* Contain.swift in Sources */,
13371338
1FD8CD481968AB07008ED995 /* BeGreaterThanOrEqualTo.swift in Sources */,
@@ -1345,20 +1346,13 @@
13451346
1FD8CD521968AB07008ED995 /* BeNil.swift in Sources */,
13461347
1FD8CD6A1968AB07008ED995 /* Async.swift in Sources */,
13471348
1FD8CD581968AB07008ED995 /* EndWith.swift in Sources */,
1348-
1FD8CD5C1968AB07008ED995 /* MatcherProtocols.swift in Sources */,
13491349
1FD8CD341968AB07008ED995 /* DSL.swift in Sources */,
13501350
1F12BEDD1E7791B9006952EC /* CwlCatchException.swift in Sources */,
13511351
7B5358BE1C38479700A23FAA /* SatisfyAnyOf.swift in Sources */,
13521352
1FD8CD381968AB07008ED995 /* Expression.swift in Sources */,
13531353
1FD8CD3A1968AB07008ED995 /* FailureMessage.swift in Sources */,
13541354
472FD1351B9E085700C7B8DA /* HaveCount.swift in Sources */,
1355-
9630C0301C6D139F000693EE /* CwlDarwinDefinitions.swift in Sources */,
13561355
1FA0C4001E30B14500623165 /* Predicate.swift in Sources */,
1357-
9630C0231C6D0B82000693EE /* mach_excServer.c in Sources */,
1358-
9630C01F1C6D0B2F000693EE /* CwlCatchException.swift in Sources */,
1359-
9630C0131C6D0B18000693EE /* CwlCatchBadInstruction.swift in Sources */,
1360-
9630C01C1C6D0B2F000693EE /* CwlCatchException.m in Sources */,
1361-
9630C02C1C6D125F000693EE /* CwlBadInstructionException.swift in Sources */,
13621356
964CFEFD1C4FF48900513336 /* ThrowAssertion.swift in Sources */,
13631357
);
13641358
runOnlyForDeploymentPostprocessing = 0;
@@ -1438,7 +1432,6 @@
14381432
1F5DF1791BDCA0F500C3A531 /* BeCloseTo.swift in Sources */,
14391433
1F5DF16C1BDCA0F500C3A531 /* AssertionRecorder.swift in Sources */,
14401434
1F1871D71CA89EEF00A34BF2 /* NMBExceptionCapture.m in Sources */,
1441-
1F5DF1881BDCA0F500C3A531 /* MatcherProtocols.swift in Sources */,
14421435
1F5DF16E1BDCA0F500C3A531 /* NimbleXCTestHandler.swift in Sources */,
14431436
7A6AB2C61E7F628A00A2F694 /* ToSucceed.swift in Sources */,
14441437
1F5DF1751BDCA0F500C3A531 /* FailureMessage.swift in Sources */,
@@ -1484,6 +1477,7 @@
14841477
1F5DF1841BDCA0F500C3A531 /* EndWith.swift in Sources */,
14851478
1F5DF18D1BDCA0F500C3A531 /* SourceLocation.swift in Sources */,
14861479
1F5DF1701BDCA0F500C3A531 /* DSL.swift in Sources */,
1480+
CDD80B851F20307B0002CD65 /* MatcherProtocols.swift in Sources */,
14871481
1F5DF1721BDCA0F500C3A531 /* Expectation.swift in Sources */,
14881482
7B5358C01C38479700A23FAA /* SatisfyAnyOf.swift in Sources */,
14891483
7B13BA0C1DD361D300C9098C /* ContainElementSatisfying.swift in Sources */,
@@ -1604,6 +1598,7 @@
16041598
AE7ADE461C80BF8000B94CD3 /* MatchError.swift in Sources */,
16051599
1FC494AB1C29CBA40010975C /* NimbleEnvironment.swift in Sources */,
16061600
1FD8CD5F1968AB07008ED995 /* RaisesException.swift in Sources */,
1601+
CDD80B831F2030790002CD65 /* MatcherProtocols.swift in Sources */,
16071602
1FD8CD571968AB07008ED995 /* Contain.swift in Sources */,
16081603
7A0A26231E7F52360092A34E /* ToSucceed.swift in Sources */,
16091604
1FD8CD491968AB07008ED995 /* BeGreaterThanOrEqualTo.swift in Sources */,
@@ -1618,7 +1613,6 @@
16181613
1FD8CD6B1968AB07008ED995 /* Async.swift in Sources */,
16191614
964CFEFE1C4FF48900513336 /* ThrowAssertion.swift in Sources */,
16201615
1FD8CD591968AB07008ED995 /* EndWith.swift in Sources */,
1621-
1FD8CD5D1968AB07008ED995 /* MatcherProtocols.swift in Sources */,
16221616
1FD8CD351968AB07008ED995 /* DSL.swift in Sources */,
16231617
7B5358BF1C38479700A23FAA /* SatisfyAnyOf.swift in Sources */,
16241618
1F12BE9B1E778F70006952EC /* CwlDarwinDefinitions.swift in Sources */,
@@ -1757,14 +1751,20 @@
17571751
CLANG_ENABLE_MODULES = YES;
17581752
CLANG_ENABLE_OBJC_ARC = YES;
17591753
CLANG_MODULES_AUTOLINK = NO;
1754+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
17601755
CLANG_WARN_BOOL_CONVERSION = YES;
1756+
CLANG_WARN_COMMA = YES;
17611757
CLANG_WARN_CONSTANT_CONVERSION = YES;
17621758
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
17631759
CLANG_WARN_EMPTY_BODY = YES;
17641760
CLANG_WARN_ENUM_CONVERSION = YES;
17651761
CLANG_WARN_INFINITE_RECURSION = YES;
17661762
CLANG_WARN_INT_CONVERSION = YES;
1763+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1764+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
17671765
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1766+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1767+
CLANG_WARN_STRICT_PROTOTYPES = YES;
17681768
CLANG_WARN_SUSPICIOUS_MOVE = YES;
17691769
CLANG_WARN_UNREACHABLE_CODE = YES;
17701770
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
@@ -1796,6 +1796,7 @@
17961796
ONLY_ACTIVE_ARCH = YES;
17971797
SDKROOT = iphoneos;
17981798
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1799+
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
17991800
SWIFT_VERSION = 3.0;
18001801
TARGETED_DEVICE_FAMILY = "1,2";
18011802
TVOS_DEPLOYMENT_TARGET = 9.0;
@@ -1813,14 +1814,20 @@
18131814
CLANG_ENABLE_MODULES = YES;
18141815
CLANG_ENABLE_OBJC_ARC = YES;
18151816
CLANG_MODULES_AUTOLINK = NO;
1817+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
18161818
CLANG_WARN_BOOL_CONVERSION = YES;
1819+
CLANG_WARN_COMMA = YES;
18171820
CLANG_WARN_CONSTANT_CONVERSION = YES;
18181821
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
18191822
CLANG_WARN_EMPTY_BODY = YES;
18201823
CLANG_WARN_ENUM_CONVERSION = YES;
18211824
CLANG_WARN_INFINITE_RECURSION = YES;
18221825
CLANG_WARN_INT_CONVERSION = YES;
1826+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
1827+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
18231828
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1829+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1830+
CLANG_WARN_STRICT_PROTOTYPES = YES;
18241831
CLANG_WARN_SUSPICIOUS_MOVE = YES;
18251832
CLANG_WARN_UNREACHABLE_CODE = YES;
18261833
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
@@ -1844,6 +1851,7 @@
18441851
METAL_ENABLE_DEBUG_INFO = NO;
18451852
SDKROOT = iphoneos;
18461853
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
1854+
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
18471855
SWIFT_VERSION = 3.0;
18481856
TARGETED_DEVICE_FAMILY = "1,2";
18491857
TVOS_DEPLOYMENT_TARGET = 9.0;

Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0820"
3+
LastUpgradeVersion = "0900"
44
version = "2.0">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<Testables>
3132
<TestableReference
@@ -46,6 +47,7 @@
4647
buildConfiguration = "Debug"
4748
selectedDebuggerIdentifier = ""
4849
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
50+
language = ""
4951
launchStyle = "0"
5052
useCustomWorkingDirectory = "NO"
5153
ignoresPersistentStateOnLaunch = "NO"

Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-macOS.xcscheme

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0820"
3+
LastUpgradeVersion = "0900"
44
version = "2.0">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<Testables>
3132
<TestableReference
@@ -46,6 +47,7 @@
4647
buildConfiguration = "Debug"
4748
selectedDebuggerIdentifier = ""
4849
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
50+
language = ""
4951
launchStyle = "0"
5052
useCustomWorkingDirectory = "NO"
5153
ignoresPersistentStateOnLaunch = "NO"

Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0820"
3+
LastUpgradeVersion = "0900"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -26,6 +26,7 @@
2626
buildConfiguration = "Debug"
2727
selectedDebuggerIdentifier = ""
2828
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
29+
language = ""
2930
shouldUseLaunchSchemeArgsEnv = "YES">
3031
<Testables>
3132
<TestableReference
@@ -55,6 +56,7 @@
5556
buildConfiguration = "Debug"
5657
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
5758
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59+
language = ""
5860
launchStyle = "0"
5961
useCustomWorkingDirectory = "NO"
6062
ignoresPersistentStateOnLaunch = "NO"

0 commit comments

Comments
 (0)