Skip to content

Commit

Permalink
Update Nimble submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffh committed Oct 25, 2016
1 parent 622e410 commit 2e2f6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Externals/Nimble
Submodule Nimble updated 58 files
+3 −1 .gitignore
+3 −3 .travis.yml
+8 −0 CONTRIBUTING.md
+1 −1 Gemfile
+28 −26 Gemfile.lock
+30 −4 Nimble.podspec
+124 −10 Nimble.xcodeproj/project.pbxproj
+2 −2 Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme
+2 −1 Package.swift
+79 −7 README.md
+3 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/.gitignore
+30 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h
+35 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m
+32 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift
+28 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/Info.plist
+76 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift
+61 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.h
+50 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m
+194 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift
+100 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstructionPOSIX.swift
+63 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift
+28 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/Info.plist
+537 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c
+298 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h
+80 −0 Sources/Lib/CwlPreconditionTesting/README.md
+2 −2 Sources/Nimble/Adapters/NimbleEnvironment.swift
+7 −2 Sources/Nimble/DSL+Wait.swift
+2 −4 Sources/Nimble/Matchers/AsyncMatcherWrapper.swift
+1 −1 Sources/Nimble/Matchers/BeLessThan.swift
+4 −4 Sources/Nimble/Matchers/BeLogical.swift
+2 −2 Sources/Nimble/Matchers/Match.swift
+55 −0 Sources/Nimble/Matchers/ThrowAssertion.swift
+7 −0 Sources/Nimble/Nimble.h
+20 −9 Sources/Nimble/Utils/Async.swift
+12 −5 Sources/Nimble/Utils/Errors.swift
+263 −31 Sources/NimbleObjectiveC/DSL.h
+14 −8 Sources/NimbleObjectiveC/DSL.m
+2 −2 Tests/LinuxMain.swift
+3 −7 Tests/NimbleTests/AsynchronousTest.swift
+1 −2 Tests/NimbleTests/Helpers/utils.swift
+5 −0 Tests/NimbleTests/Matchers/MatchErrorTest.swift
+0 −3 Tests/NimbleTests/Matchers/MatchTest.swift
+62 −0 Tests/NimbleTests/Matchers/ThrowAssertionTest.swift
+0 −1 Tests/NimbleTests/Matchers/ThrowErrorTest.swift
+3 −3 Tests/NimbleTests/SynchronousTests.swift
+0 −6 Tests/NimbleTests/UserDescriptionTest.swift
+11 −0 Tests/NimbleTests/objc/ObjCBeCloseToTest.m
+22 −0 Tests/NimbleTests/objc/ObjCBeFalseTest.m
+32 −2 Tests/NimbleTests/objc/ObjCBeFalsyTest.m
+9 −0 Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m
+8 −0 Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m
+6 −0 Tests/NimbleTests/objc/ObjCBeIdenticalToTest.m
+10 −0 Tests/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m
+9 −0 Tests/NimbleTests/objc/ObjCBeLessThanTest.m
+22 −0 Tests/NimbleTests/objc/ObjCBeTrueTest.m
+27 −0 Tests/NimbleTests/objc/ObjCBeTruthyTest.m
+59 −0 Tests/NimbleTests/objc/ObjCEqualTest.m
+70 −1 Tests/NimbleTests/objc/ObjCHaveCount.m

0 comments on commit 2e2f6ef

Please sign in to comment.