Skip to content

Commit

Permalink
Upgrade Nimble to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Jul 10, 2015
1 parent 7285464 commit fe7d4bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "jspahrsummers/xcconfigs" ~> 0.8
github "Quick/Quick" ~> 0.3
github "Quick/Nimble" ~> 0.4
github "Quick/Nimble" ~> 1.0.0
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github "robrix/Box" "1.2.2"
github "Quick/Nimble" "v0.4.2"
github "Quick/Nimble" "v1.0.0"
github "Quick/Quick" "v0.3.1"
github "jspahrsummers/xcconfigs" "0.8.1"
github "antitypical/Result" "0.4.4"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 54 files
+1 −0 .gitignore
+3 −4 CONTRIBUTING.md
+2 −2 Nimble.podspec
+27 −33 Nimble.xcodeproj/project.pbxproj
+2 −2 Nimble.xcodeproj/project.xcworkspace/xcshareddata/Nimble.xccheckout
+1 −1 Nimble/Adapters/AdapterProtocols.swift
+20 −0 Nimble/Adapters/AssertionDispatcher.swift
+51 −3 Nimble/Adapters/AssertionRecorder.swift
+18 −2 Nimble/Adapters/NimbleXCTestHandler.swift
+3 −3 Nimble/DSL+Wait.swift
+3 −3 Nimble/DSL.swift
+30 −17 Nimble/Expectation.swift
+46 −2 Nimble/Expression.swift
+32 −7 Nimble/FailureMessage.swift
+2 −13 Nimble/Matchers/AllPass.swift
+11 −1 Nimble/Matchers/BeAKindOf.swift
+11 −1 Nimble/Matchers/BeAnInstanceOf.swift
+3 −3 Nimble/Matchers/BeCloseTo.swift
+2 −1 Nimble/Matchers/BeEmpty.swift
+1 −1 Nimble/Matchers/BeGreaterThan.swift
+1 −1 Nimble/Matchers/BeGreaterThanOrEqualTo.swift
+1 −1 Nimble/Matchers/BeIdenticalTo.swift
+1 −1 Nimble/Matchers/BeLessThan.swift
+1 −1 Nimble/Matchers/BeLessThanOrEqual.swift
+38 −21 Nimble/Matchers/BeLogical.swift
+1 −1 Nimble/Matchers/BeNil.swift
+1 −1 Nimble/Matchers/BeginWith.swift
+2 −1 Nimble/Matchers/Contain.swift
+4 −3 Nimble/Matchers/EndWith.swift
+1 −1 Nimble/Matchers/Equal.swift
+1 −1 Nimble/Matchers/Match.swift
+2 −33 Nimble/Matchers/MatcherProtocols.swift
+119 −177 Nimble/Matchers/RaisesException.swift
+79 −0 Nimble/ObjCExpectation.swift
+1 −1 Nimble/Utils/Stringers.swift
+30 −54 Nimble/Wrappers/AsyncMatcherWrapper.swift
+0 −28 Nimble/Wrappers/BasicMatcherWrapper.swift
+0 −18 Nimble/Wrappers/FullMatcherWrapper.swift
+56 −16 Nimble/Wrappers/MatcherFunc.swift
+0 −56 Nimble/Wrappers/NonNilMatcherWrapper.swift
+17 −93 Nimble/Wrappers/ObjCMatcher.swift
+4 −4 Nimble/objc/DSL.h
+10 −2 Nimble/objc/DSL.m
+1 −1 NimbleTests/AsynchronousTest.swift
+40 −17 NimbleTests/Helpers/utils.swift
+18 −0 NimbleTests/Matchers/BeAKindOfTest.swift
+20 −0 NimbleTests/Matchers/BeAnInstanceOfTest.swift
+22 −0 NimbleTests/Matchers/BeLogicalTest.swift
+92 −39 NimbleTests/Matchers/RaisesExceptionTest.swift
+4 −0 NimbleTests/objc/NimbleSpecHelper.h
+102 −27 NimbleTests/objc/ObjCRaiseExceptionTest.m
+21 −24 README.md
+37 −0 circle.yml
+5 −5 test

0 comments on commit fe7d4bf

Please sign in to comment.