Skip to content

Commit

Permalink
- updated Nimble version to v0.4.1 to support Xcode 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanhimmelman committed Apr 8, 2015
1 parent fbd1f2b commit e271dc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cartfile.private
@@ -1 +1 @@
github "Quick/Nimble" == 0.3.1
github "Quick/Nimble" == 0.4.1
2 changes: 1 addition & 1 deletion Cartfile.resolved
@@ -1 +1 @@
github "Quick/Nimble" "v0.3.1"
github "Quick/Nimble" "v0.4.1"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 42 files
+0 −9 .travis.yml
+16 −1 CONTRIBUTING.md
+2 −2 Nimble.podspec
+28 −12 Nimble.xcodeproj/project.pbxproj
+1 −2 Nimble/Adapters/AdapterProtocols.swift
+3 −3 Nimble/Adapters/AssertionRecorder.swift
+12 −0 Nimble/Adapters/NimbleXCTestHandler.swift
+0 −10 Nimble/Adapters/XCTestHandler.swift
+7 −7 Nimble/DSL+Wait.swift
+6 −4 Nimble/DSL.swift
+1 −1 Nimble/Expectation.swift
+7 −4 Nimble/Expression.swift
+1 −1 Nimble/FailureMessage.swift
+99 −0 Nimble/Matchers/AllPass.swift
+1 −1 Nimble/Matchers/BeGreaterThan.swift
+1 −1 Nimble/Matchers/BeGreaterThanOrEqualTo.swift
+1 −1 Nimble/Matchers/BeLessThan.swift
+1 −1 Nimble/Matchers/BeginWith.swift
+14 −1 Nimble/Matchers/Contain.swift
+1 −1 Nimble/Matchers/EndWith.swift
+62 −0 Nimble/Matchers/Equal.swift
+1 −1 Nimble/Matchers/Match.swift
+2 −2 Nimble/Matchers/MatcherProtocols.swift
+158 −33 Nimble/Matchers/RaisesException.swift
+3 −3 Nimble/Utils/Stringers.swift
+33 −16 Nimble/Wrappers/AsyncMatcherWrapper.swift
+4 −0 Nimble/objc/DSL.h
+6 −2 Nimble/objc/DSL.m
+6 −7 NimbleTests/AsynchronousTest.swift
+5 −5 NimbleTests/Helpers/utils.swift
+74 −0 NimbleTests/Matchers/AllPassTest.swift
+1 −1 NimbleTests/Matchers/BeEmptyTest.swift
+9 −9 NimbleTests/Matchers/BeIdenticalToObjectTest.swift
+2 −2 NimbleTests/Matchers/BeIdenticalToTest.swift
+1 −1 NimbleTests/Matchers/BeNilTest.swift
+2 −2 NimbleTests/Matchers/BeginWithTest.swift
+2 −2 NimbleTests/Matchers/EndWithTest.swift
+31 −0 NimbleTests/Matchers/EqualTest.swift
+71 −41 NimbleTests/Matchers/RaisesExceptionTest.swift
+38 −0 NimbleTests/objc/ObjCAllPassTest.m
+55 −13 NimbleTests/objc/ObjCRaiseExceptionTest.m
+66 −22 README.md

0 comments on commit e271dc8

Please sign in to comment.