Skip to content

Commit

Permalink
Update Nimble to 7.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Sep 5, 2018
1 parent 59cc980 commit 28d7070
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "Quick/Quick" ~> 1.3.1
github "Quick/Nimble" ~> 7.1.3
github "Quick/Nimble" ~> 7.3
github "jspahrsummers/xcconfigs" ~> 0.9
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "Carthage/Commandant" "0.15.0"
github "Carthage/ReactiveTask" "0.15.0"
github "Quick/Nimble" "v7.1.3"
github "Quick/Nimble" "v7.3.0"
github "Quick/Quick" "v1.3.1"
github "ReactiveCocoa/ReactiveSwift" "4.0.0"
github "antitypical/Result" "4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 40 files
+1 −1 Nimble.podspec
+24 −24 Nimble.xcodeproj/project.pbxproj
+2 −2 Sources/Nimble/Adapters/AssertionRecorder.swift
+1 −1 Sources/Nimble/Adapters/NMBExpectation.swift
+21 −11 Sources/Nimble/Adapters/NMBObjCMatcher.swift
+1 −1 Sources/Nimble/Adapters/NimbleXCTestHandler.swift
+14 −21 Sources/Nimble/Expectation.swift
+3 −1 Sources/Nimble/ExpectationMessage.swift
+3 −3 Sources/Nimble/Matchers/AllPass.swift
+19 −80 Sources/Nimble/Matchers/Async.swift
+1 −1 Sources/Nimble/Matchers/BeAKindOf.swift
+1 −1 Sources/Nimble/Matchers/BeAnInstanceOf.swift
+14 −2 Sources/Nimble/Matchers/BeCloseTo.swift
+3 −3 Sources/Nimble/Matchers/BeEmpty.swift
+1 −1 Sources/Nimble/Matchers/BeGreaterThan.swift
+10 −10 Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift
+1 −1 Sources/Nimble/Matchers/BeIdenticalTo.swift
+10 −10 Sources/Nimble/Matchers/BeLessThan.swift
+9 −10 Sources/Nimble/Matchers/BeLessThanOrEqual.swift
+4 −4 Sources/Nimble/Matchers/BeLogical.swift
+1 −1 Sources/Nimble/Matchers/BeNil.swift
+3 −3 Sources/Nimble/Matchers/BeginWith.swift
+24 −24 Sources/Nimble/Matchers/Contain.swift
+10 −12 Sources/Nimble/Matchers/ContainElementSatisfying.swift
+17 −21 Sources/Nimble/Matchers/EndWith.swift
+1 −1 Sources/Nimble/Matchers/Equal.swift
+23 −17 Sources/Nimble/Matchers/HaveCount.swift
+1 −1 Sources/Nimble/Matchers/Match.swift
+32 −14 Sources/Nimble/Matchers/MatchError.swift
+4 −2 Sources/Nimble/Matchers/PostNotification.swift
+7 −3 Sources/Nimble/Matchers/Predicate.swift
+16 −10 Sources/Nimble/Matchers/RaisesException.swift
+6 −31 Sources/Nimble/Matchers/SatisfyAllOf.swift
+6 −31 Sources/Nimble/Matchers/SatisfyAnyOf.swift
+12 −16 Sources/Nimble/Matchers/ThrowAssertion.swift
+45 −39 Sources/Nimble/Matchers/ThrowError.swift
+0 −0 Sources/Nimble/Utils/Await.swift
+6 −6 Tests/NimbleTests/Helpers/utils.swift
+7 −1 Tests/NimbleTests/Matchers/ThrowAssertionTest.swift
+33 −0 Tests/NimbleTests/SynchronousTest.swift
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"repositoryURL": "https://github.com/Quick/Nimble.git",
"state": {
"branch": null,
"revision": "9c1379fdcd58c4f2278aea5e029394ba9a2b8f07",
"version": "7.1.3"
"revision": "7c61d8e7e830dd37f7161ce2b894be178532163c",
"version": "7.3.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
.package(url: "https://github.com/mdiep/Tentacle.git", from: "0.12.0"),
.package(url: "https://github.com/thoughtbot/Curry.git", from: "4.0.0"),
.package(url: "https://github.com/Quick/Quick.git", from: "1.3.1"),
.package(url: "https://github.com/Quick/Nimble.git", from: "7.1.3"),
.package(url: "https://github.com/Quick/Nimble.git", from: "7.3.0"),
],
targets: [
.target(
Expand Down

0 comments on commit 28d7070

Please sign in to comment.