├── Cartfile.private ├── Cartfile.resolved ├── Carthage ├── Build │ ├── .Nimble.version │ ├── .Quick.version │ ├── Mac │ │ ├── Nimble.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Nimble │ │ ├── Nimble.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Nimble │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── CwlCatchException.h │ │ │ │ │ ├── CwlMachBadInstructionHandler.h │ │ │ │ │ ├── CwlPreconditionTesting.h │ │ │ │ │ ├── DSL.h │ │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ │ ├── NMBStringify.h │ │ │ │ │ ├── Nimble-Swift.h │ │ │ │ │ └── Nimble.h │ │ │ │ ├── Modules │ │ │ │ │ ├── Nimble.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ ├── Nimble │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── Quick.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── Quick │ │ └── Quick.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Quick │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── Quick-Swift.h │ │ │ │ ├── Quick.h │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickSpec.h │ │ │ ├── Modules │ │ │ │ ├── Quick.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── Quick │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ └── tvOS │ │ ├── Nimble.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Nimble │ │ └── Nimble.framework │ │ ├── Headers │ │ ├── CwlPreconditionTesting_POSIX.h │ │ ├── DSL.h │ │ ├── NMBExceptionCapture.h │ │ ├── NMBStringify.h │ │ ├── Nimble-Swift.h │ │ └── Nimble.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── Nimble.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ ├── Nimble │ │ └── _CodeSignature │ │ └── CodeResources └── Checkouts │ ├── Nimble │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ └── PULL_REQUEST_TEMPLATE │ ├── .gitignore │ ├── .hound.yml │ ├── .swift-version │ ├── .swiftlint.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Cartfile.private │ ├── Cartfile.resolved │ ├── Carthage │ │ └── Checkouts │ │ │ ├── CwlCatchException │ │ │ ├── LICENSE.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── CwlCatchException │ │ │ │ └── CwlCatchException.swift │ │ │ │ └── CwlCatchExceptionSupport │ │ │ │ ├── CwlCatchException.m │ │ │ │ └── include │ │ │ │ └── CwlCatchException.h │ │ │ └── CwlPreconditionTesting │ │ │ ├── LICENSE.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ ├── CwlMachBadInstructionHandler │ │ │ ├── CwlMachBadInstructionHandler.m │ │ │ ├── include │ │ │ │ └── CwlMachBadInstructionHandler.h │ │ │ ├── mach_excServer.c │ │ │ └── mach_excServer.h │ │ │ └── CwlPreconditionTesting │ │ │ ├── CwlBadInstructionException.swift │ │ │ ├── CwlCatchBadInstruction.swift │ │ │ ├── CwlCatchBadInstructionPosix.swift │ │ │ ├── CwlDarwinDefinitions.swift │ │ │ ├── Mach │ │ │ └── CwlPreconditionTesting.h │ │ │ └── Posix │ │ │ └── CwlPreconditionTesting_POSIX.h │ ├── Dockerfile.test │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Nimble.podspec │ ├── Nimble.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Nimble-iOS.xcscheme │ │ │ ├── Nimble-macOS.xcscheme │ │ │ └── Nimble-tvOS.xcscheme │ ├── Package.swift │ ├── Package@swift-4.swift │ ├── README.md │ ├── Sources │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ └── NonObjectiveC │ │ │ │ │ └── ExceptionCapture.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── ExpectationMessage.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeVoid.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── ContainElementSatisfying.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatchError.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── PostNotification.swift │ │ │ │ ├── Predicate.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ ├── SatisfyAllOf.swift │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ ├── ThrowAssertion.swift │ │ │ │ ├── ThrowError.swift │ │ │ │ └── ToSucceed.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ │ ├── Async.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── Functional.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ └── NimbleObjectiveC │ │ │ ├── CurrentTestCaseTracker.h │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBExceptionCapture.m │ │ │ ├── NMBStringify.h │ │ │ ├── NMBStringify.m │ │ │ └── XCTestObservationCenter+Register.m │ ├── Tests │ │ ├── .swiftlint.yml │ │ ├── LinuxMain.swift │ │ └── NimbleTests │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ ├── XCTestCaseProvider.swift │ │ │ └── utils.swift │ │ │ ├── Info.plist │ │ │ ├── LinuxSupport.swift │ │ │ ├── Matchers │ │ │ ├── AllPassTest.swift │ │ │ ├── BeAKindOfTest.swift │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ ├── BeCloseToTest.swift │ │ │ ├── BeEmptyTest.swift │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ ├── BeGreaterThanTest.swift │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ ├── BeIdenticalToTest.swift │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ ├── BeLessThanTest.swift │ │ │ ├── BeLogicalTest.swift │ │ │ ├── BeNilTest.swift │ │ │ ├── BeVoidTest.swift │ │ │ ├── BeginWithTest.swift │ │ │ ├── ContainElementSatisfyingTest.swift │ │ │ ├── ContainTest.swift │ │ │ ├── EndWithTest.swift │ │ │ ├── EqualTest.swift │ │ │ ├── HaveCountTest.swift │ │ │ ├── MatchErrorTest.swift │ │ │ ├── MatchTest.swift │ │ │ ├── PostNotificationTest.swift │ │ │ ├── RaisesExceptionTest.swift │ │ │ ├── SatisfyAllOfTest.swift │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ ├── ThrowAssertionTest.swift │ │ │ ├── ThrowErrorTest.swift │ │ │ └── ToSucceedTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ ├── NimbleSpecHelper.h │ │ │ ├── ObjCAllPassTest.m │ │ │ ├── ObjCAsyncTest.m │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ ├── ObjCBeCloseToTest.m │ │ │ ├── ObjCBeEmptyTest.m │ │ │ ├── ObjCBeFalseTest.m │ │ │ ├── ObjCBeFalsyTest.m │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ ├── ObjCBeKindOfTest.m │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ ├── ObjCBeLessThanTest.m │ │ │ ├── ObjCBeNilTest.m │ │ │ ├── ObjCBeTrueTest.m │ │ │ ├── ObjCBeTruthyTest.m │ │ │ ├── ObjCBeginWithTest.m │ │ │ ├── ObjCContainElementSatisfyingTest.m │ │ │ ├── ObjCContainTest.m │ │ │ ├── ObjCEndWithTest.m │ │ │ ├── ObjCEqualTest.m │ │ │ ├── ObjCHaveCountTest.m │ │ │ ├── ObjCMatchTest.m │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ ├── ObjCSatisfyAllOfTest.m │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ ├── ObjCSyncTest.m │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ └── ObjcStringersTest.m │ ├── script │ │ └── release │ └── test │ └── Quick │ ├── .github │ ├── ISSUE_TEMPLATE │ └── PULL_REQUEST_TEMPLATE │ ├── .gitignore │ ├── .gitmodules │ ├── .hound.yml │ ├── .swift-version │ ├── .swiftlint.yml │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Dangerfile │ ├── Documentation │ ├── README.md │ ├── en-us │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ ├── TestUsingTestDoubles.md │ │ ├── TestingApps.md │ │ └── Troubleshooting.md │ ├── ja │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ ├── TestUsingTestDoubles.md │ │ ├── TestingApps.md │ │ └── Troubleshooting.md │ ├── ko-kr │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ ├── TestUsingTestDoubles.md │ │ ├── TestingApps.md │ │ └── Troubleshooting.md │ ├── pt-br │ │ ├── BehavioralTesting.md │ │ ├── README.md │ │ └── SharedExamples.md │ └── zh-cn │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ ├── TestUsingTestDoubles.md │ │ ├── TestingApps.md │ │ └── Troubleshooting.md │ ├── Externals │ └── Nimble │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ └── PULL_REQUEST_TEMPLATE │ │ ├── .gitignore │ │ ├── .hound.yml │ │ ├── .swift-version │ │ ├── .swiftlint.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Cartfile.private │ │ ├── Cartfile.resolved │ │ ├── Carthage │ │ └── Checkouts │ │ │ ├── CwlCatchException │ │ │ ├── LICENSE.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ │ ├── CwlCatchException │ │ │ │ └── CwlCatchException.swift │ │ │ │ └── CwlCatchExceptionSupport │ │ │ │ ├── CwlCatchException.m │ │ │ │ └── include │ │ │ │ └── CwlCatchException.h │ │ │ └── CwlPreconditionTesting │ │ │ ├── LICENSE.txt │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ └── Sources │ │ │ ├── CwlMachBadInstructionHandler │ │ │ ├── CwlMachBadInstructionHandler.m │ │ │ ├── include │ │ │ │ └── CwlMachBadInstructionHandler.h │ │ │ ├── mach_excServer.c │ │ │ └── mach_excServer.h │ │ │ └── CwlPreconditionTesting │ │ │ ├── CwlBadInstructionException.swift │ │ │ ├── CwlCatchBadInstruction.swift │ │ │ ├── CwlCatchBadInstructionPosix.swift │ │ │ ├── CwlDarwinDefinitions.swift │ │ │ ├── Mach │ │ │ └── CwlPreconditionTesting.h │ │ │ └── Posix │ │ │ └── CwlPreconditionTesting_POSIX.h │ │ ├── Dockerfile.test │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE │ │ ├── Nimble.podspec │ │ ├── Nimble.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Nimble-iOS.xcscheme │ │ │ ├── Nimble-macOS.xcscheme │ │ │ └── Nimble-tvOS.xcscheme │ │ ├── Package.swift │ │ ├── Package@swift-4.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NimbleEnvironment.swift │ │ │ │ ├── NimbleXCTestHandler.swift │ │ │ │ └── NonObjectiveC │ │ │ │ │ └── ExceptionCapture.swift │ │ │ ├── DSL 2.swift │ │ │ ├── DSL+Wait 3.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation 2.swift │ │ │ ├── Expectation.swift │ │ │ ├── ExpectationMessage 2.swift │ │ │ ├── ExpectationMessage.swift │ │ │ ├── Expression 2.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage 2.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeVoid.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── ContainElementSatisfying.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatchError.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── PostNotification.swift │ │ │ │ ├── Predicate.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ ├── SatisfyAllOf.swift │ │ │ │ ├── SatisfyAnyOf.swift │ │ │ │ ├── ThrowAssertion.swift │ │ │ │ ├── ThrowError.swift │ │ │ │ └── ToSucceed.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ │ ├── Async.swift │ │ │ │ ├── Errors.swift │ │ │ │ ├── Functional.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ └── NimbleObjectiveC │ │ │ ├── CurrentTestCaseTracker.h │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBExceptionCapture.m │ │ │ ├── NMBStringify.h │ │ │ ├── NMBStringify.m │ │ │ └── XCTestObservationCenter+Register.m │ │ ├── Tests │ │ ├── .swiftlint.yml │ │ ├── LinuxMain.swift │ │ └── NimbleTests │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ ├── XCTestCaseProvider.swift │ │ │ └── utils.swift │ │ │ ├── Info.plist │ │ │ ├── LinuxSupport.swift │ │ │ ├── Matchers │ │ │ ├── AllPassTest.swift │ │ │ ├── BeAKindOfTest.swift │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ ├── BeCloseToTest.swift │ │ │ ├── BeEmptyTest.swift │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ ├── BeGreaterThanTest.swift │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ ├── BeIdenticalToTest.swift │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ ├── BeLessThanTest.swift │ │ │ ├── BeLogicalTest.swift │ │ │ ├── BeNilTest.swift │ │ │ ├── BeVoidTest.swift │ │ │ ├── BeginWithTest.swift │ │ │ ├── ContainElementSatisfyingTest.swift │ │ │ ├── ContainTest.swift │ │ │ ├── EndWithTest.swift │ │ │ ├── EqualTest.swift │ │ │ ├── HaveCountTest.swift │ │ │ ├── MatchErrorTest.swift │ │ │ ├── MatchTest.swift │ │ │ ├── PostNotificationTest.swift │ │ │ ├── RaisesExceptionTest.swift │ │ │ ├── SatisfyAllOfTest.swift │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ ├── ThrowAssertionTest.swift │ │ │ ├── ThrowErrorTest.swift │ │ │ └── ToSucceedTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ ├── NimbleSpecHelper.h │ │ │ ├── ObjCAllPassTest.m │ │ │ ├── ObjCAsyncTest.m │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ ├── ObjCBeCloseToTest.m │ │ │ ├── ObjCBeEmptyTest.m │ │ │ ├── ObjCBeFalseTest.m │ │ │ ├── ObjCBeFalsyTest.m │ │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ │ ├── ObjCBeGreaterThanTest.m │ │ │ ├── ObjCBeIdenticalToTest.m │ │ │ ├── ObjCBeKindOfTest.m │ │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ │ ├── ObjCBeLessThanTest.m │ │ │ ├── ObjCBeNilTest.m │ │ │ ├── ObjCBeTrueTest.m │ │ │ ├── ObjCBeTruthyTest.m │ │ │ ├── ObjCBeginWithTest.m │ │ │ ├── ObjCContainElementSatisfyingTest.m │ │ │ ├── ObjCContainTest.m │ │ │ ├── ObjCEndWithTest.m │ │ │ ├── ObjCEqualTest.m │ │ │ ├── ObjCHaveCountTest.m │ │ │ ├── ObjCMatchTest.m │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ ├── ObjCSatisfyAllOfTest.m │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ ├── ObjCSyncTest.m │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ └── ObjcStringersTest.m │ │ ├── script │ │ └── release │ │ └── test │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Package.resolved │ ├── Package.swift │ ├── Package@swift-4.swift │ ├── Quick Templates │ ├── Quick Configuration Class.xctemplate │ │ ├── Objective-C │ │ │ ├── ___FILEBASENAME___.h │ │ │ └── ___FILEBASENAME___.m │ │ ├── Swift │ │ │ └── ___FILEBASENAME___.swift │ │ ├── TemplateIcon.icns │ │ └── TemplateInfo.plist │ └── Quick Spec Class.xctemplate │ │ ├── Objective-C │ │ └── ___FILEBASENAME___.m │ │ ├── Swift │ │ └── ___FILEBASENAME___.swift │ │ ├── TemplateIcon.icns │ │ └── TemplateInfo.plist │ ├── Quick.podspec │ ├── Quick.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Quick-iOS.xcscheme │ │ ├── Quick-macOS.xcscheme │ │ └── Quick-tvOS.xcscheme │ ├── Quick.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── README.md │ ├── Rakefile │ ├── Sources │ ├── Quick │ │ ├── Behavior.swift │ │ ├── Callsite.swift │ │ ├── Configuration │ │ │ ├── Configuration.swift │ │ │ └── QuickConfiguration.swift │ │ ├── DSL │ │ │ ├── DSL.swift │ │ │ └── World+DSL.swift │ │ ├── ErrorUtility.swift │ │ ├── Example.swift │ │ ├── ExampleGroup.swift │ │ ├── ExampleMetadata.swift │ │ ├── Filter.swift │ │ ├── Hooks │ │ │ ├── Closures.swift │ │ │ ├── ExampleHooks.swift │ │ │ ├── HooksPhase.swift │ │ │ └── SuiteHooks.swift │ │ ├── Info.plist │ │ ├── NSBundle+CurrentTestBundle.swift │ │ ├── NSString+C99ExtendedIdentifier.swift │ │ ├── QuickMain.swift │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ ├── QuickSpec.swift │ │ ├── QuickTestSuite.swift │ │ ├── URL+FileName.swift │ │ └── World.swift │ ├── QuickObjectiveC │ │ ├── Configuration │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickConfiguration.m │ │ ├── DSL │ │ │ ├── QCKDSL.h │ │ │ ├── QCKDSL.m │ │ │ └── World+DSL.h │ │ ├── Quick.h │ │ ├── QuickSpec.h │ │ ├── QuickSpec.m │ │ ├── World.h │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ └── QuickSpecBase │ │ ├── QuickSpecBase.m │ │ └── include │ │ └── QuickSpecBase.h │ ├── Tests │ ├── LinuxMain.swift │ └── QuickTests │ │ ├── QuickAfterSuiteTests │ │ ├── AfterSuiteTests+ObjC.m │ │ ├── AfterSuiteTests.swift │ │ └── Info.plist │ │ ├── QuickFocusedTests │ │ ├── FocusedTests+ObjC.m │ │ ├── FocusedTests.swift │ │ └── Info.plist │ │ ├── QuickTestHelpers │ │ ├── SpecRunner.swift │ │ ├── TestRun.swift │ │ └── XCTestCaseProvider.swift │ │ └── QuickTests │ │ ├── Fixtures │ │ ├── FunctionalTests_BehaviorTests_Behaviors.swift │ │ └── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ │ ├── FunctionalTests │ │ ├── AfterEachTests.swift │ │ ├── BeforeEachTests.swift │ │ ├── BeforeSuiteTests.swift │ │ ├── BehaviorTests.swift │ │ ├── BundleModuleNameTests.swift │ │ ├── Configuration │ │ │ ├── AfterEach │ │ │ │ ├── Configuration+AfterEach.swift │ │ │ │ └── Configuration+AfterEachTests.swift │ │ │ └── BeforeEach │ │ │ │ ├── Configuration+BeforeEach.swift │ │ │ │ └── Configuration+BeforeEachTests.swift │ │ ├── ContextTests.swift │ │ ├── CrossReferencingSpecs.swift │ │ ├── CurrentSpecTests.swift │ │ ├── DescribeTests.swift │ │ ├── ItTests.swift │ │ ├── ObjC │ │ │ ├── AfterEachTests+ObjC.m │ │ │ ├── BeforeEachTests+ObjC.m │ │ │ ├── BeforeSuiteTests+ObjC.m │ │ │ ├── FailureTests+ObjC.m │ │ │ ├── FailureUsingXCTAssertTests+ObjC.m │ │ │ ├── ItTests+ObjC.m │ │ │ ├── PendingTests+ObjC.m │ │ │ ├── SharedExamples+BeforeEachTests+ObjC.m │ │ │ └── SharedExamplesTests+ObjC.m │ │ ├── PendingTests.swift │ │ ├── SharedExamples+BeforeEachTests.swift │ │ └── SharedExamplesTests.swift │ │ ├── Helpers │ │ ├── QCKSpecRunner.h │ │ ├── QCKSpecRunner.m │ │ ├── QuickSpec+QuickSpec_MethodList.h │ │ ├── QuickSpec+QuickSpec_MethodList.m │ │ ├── QuickTestsBridgingHeader.h │ │ ├── XCTestObservationCenter+QCKSuspendObservation.h │ │ └── XCTestObservationCenter+QCKSuspendObservation.m │ │ ├── Info.plist │ │ └── QuickConfigurationTests.m │ └── script │ ├── release │ ├── travis-install-linux │ ├── travis-install-macos │ ├── travis-script-linux │ └── travis-script-macos ├── Color+Demo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── shaps.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Color+iOS.xcscheme │ ├── Color+macOS.xcscheme │ ├── Color.xcscheme │ └── xcschememanagement.plist ├── Color+iOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard └── Info.plist ├── Color+macOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Color_macOS.entitlements ├── Info.plist ├── MainMenu.xib └── ViewController.swift ├── Color ├── Color.h ├── Info.plist └── Source │ ├── Color.swift │ ├── ColorModels.swift │ ├── Convertibles.swift │ ├── Hexidecimal.swift │ └── SystemColor.swift └── ColorTests ├── Color+Spec.swift ├── Info.plist ├── Nimble.framework ├── Headers ├── Modules ├── Nimble ├── Resources └── Versions │ ├── A │ ├── Headers │ │ ├── CwlCatchException.h │ │ ├── CwlMachBadInstructionHandler.h │ │ ├── CwlPreconditionTesting.h │ │ ├── DSL.h │ │ ├── NMBExceptionCapture.h │ │ ├── NMBStringify.h │ │ ├── Nimble-Swift.h │ │ └── Nimble.h │ ├── Modules │ │ ├── Nimble.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ ├── Nimble │ └── Resources │ │ └── Info.plist │ └── Current └── Quick.framework ├── Headers ├── Modules ├── Quick ├── Resources └── Versions ├── A ├── Headers │ ├── QCKDSL.h │ ├── Quick-Swift.h │ ├── Quick.h │ ├── QuickConfiguration.h │ └── QuickSpec.h ├── Modules │ ├── Quick.swiftmodule │ │ ├── x86_64.swiftdoc │ │ └── x86_64.swiftmodule │ └── module.modulemap ├── Quick └── Resources │ └── Info.plist └── Current /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Build/.Nimble.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/.Nimble.version -------------------------------------------------------------------------------- /Carthage/Build/.Quick.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/.Quick.version -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Nimble: -------------------------------------------------------------------------------- 1 | Versions/Current/Nimble -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlCatchException.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/DSL.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/Nimble-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/Nimble-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/Nimble.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Nimble -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Nimble.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/Mac/Nimble.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework.dSYM/Contents/Resources/DWARF/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework.dSYM/Contents/Resources/DWARF/Quick -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Quick: -------------------------------------------------------------------------------- 1 | Versions/Current/Quick -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QCKDSL.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Headers/Quick-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/Quick-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Headers/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/Quick.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QuickConfiguration.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Headers/QuickSpec.h -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Quick -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/Mac/Quick.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/Mac/Quick.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Headers/CwlPreconditionTesting_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Headers/CwlPreconditionTesting_POSIX.h -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Headers/DSL.h -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Headers/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Headers/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Headers/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Headers/Nimble-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Headers/Nimble-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Headers/Nimble.h -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/Nimble -------------------------------------------------------------------------------- /Carthage/Build/tvOS/Nimble.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Build/tvOS/Nimble.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/.hound.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Cartfile.private -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/LICENSE.txt -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/LICENSE.txt -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstructionPosix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstructionPosix.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Posix/CwlPreconditionTesting_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Posix/CwlPreconditionTesting_POSIX.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Dockerfile.test -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods', '1.5.0' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-macOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Package@swift-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Package@swift-4.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/ExpectationMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/ExpectationMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Predicate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ToSucceed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ToSucceed.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | disabled_rules: 2 | - line_length 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/AsynchronousTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/LinuxSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/LinuxSupport.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/AllPassTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/AllPassTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToObjectTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeVoidTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeVoidTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ContainElementSatisfyingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ContainElementSatisfyingTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/HaveCountTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/HaveCountTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/MatchErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/MatchErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/PostNotificationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/PostNotificationTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/SatisfyAllOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/SatisfyAllOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/SatisfyAnyOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/SatisfyAnyOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ThrowAssertionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ThrowAssertionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ThrowErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ThrowErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ToSucceedTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/Matchers/ToSucceedTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/SynchronousTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/UserDescriptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/UserDescriptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCAllPassTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCAllPassTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeEmptyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeEmptyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCContainElementSatisfyingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCContainElementSatisfyingTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCHaveCountTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCHaveCountTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAllOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAllOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAnyOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAnyOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCSyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCSyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCUserDescriptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjCUserDescriptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjcStringersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/Tests/NimbleTests/objc/ObjcStringersTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.hound.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.swift-version: -------------------------------------------------------------------------------- 1 | 3.1 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Dangerfile -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/TestUsingTestDoubles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/TestUsingTestDoubles.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/Troubleshooting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/TestUsingTestDoubles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/TestUsingTestDoubles.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ja/Troubleshooting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/TestUsingTestDoubles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/TestUsingTestDoubles.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ko-kr/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/ko-kr/Troubleshooting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/pt-br/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/pt-br/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/pt-br/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/pt-br/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/pt-br/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/pt-br/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/TestUsingTestDoubles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/TestUsingTestDoubles.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/Troubleshooting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.hound.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.swiftlint.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Cartfile.private -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/LICENSE.txt -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/LICENSE.txt -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstructionPosix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstructionPosix.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Posix/CwlPreconditionTesting_POSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Posix/CwlPreconditionTesting_POSIX.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Dockerfile.test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods', '1.5.0' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-macOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Package@swift-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Package@swift-4.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL 2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait 3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait 3.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation 2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/ExpectationMessage 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/ExpectationMessage 2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/ExpectationMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/ExpectationMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression 2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/FailureMessage 2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/FailureMessage 2.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Predicate.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ToSucceed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ToSucceed.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/DSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/.swiftlint.yml: -------------------------------------------------------------------------------- 1 | disabled_rules: 2 | - line_length 3 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/AsynchronousTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/LinuxSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/LinuxSupport.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/AllPassTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/AllPassTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToObjectTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeVoidTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeVoidTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ContainElementSatisfyingTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ContainElementSatisfyingTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/HaveCountTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/HaveCountTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/MatchErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/MatchErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/PostNotificationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/PostNotificationTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/SatisfyAllOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/SatisfyAllOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/SatisfyAnyOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/SatisfyAnyOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ThrowAssertionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ThrowAssertionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ThrowErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ThrowErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ToSucceedTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/Matchers/ToSucceedTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/SynchronousTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/UserDescriptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/UserDescriptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCAllPassTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCAllPassTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeEmptyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeEmptyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCContainElementSatisfyingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCContainElementSatisfyingTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCHaveCountTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCHaveCountTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAllOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAllOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAnyOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCSatisfyAnyOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCSyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCSyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCUserDescriptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjCUserDescriptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjcStringersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/NimbleTests/objc/ObjcStringersTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Gemfile -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Package.resolved -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Package@swift-4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Package@swift-4.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Swift/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Swift/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Objective-C/___FILEBASENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Objective-C/___FILEBASENAME___.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Swift/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Swift/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-macOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Quick.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Behavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Behavior.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSString+C99ExtendedIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSString+C99ExtendedIdentifier.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/URL+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/URL+FileName.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/DSL/World+DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/Quick.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/QuickSpec.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/World.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickSpecBase/QuickSpecBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickSpecBase/QuickSpecBase.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Sources/QuickSpecBase/include/QuickSpecBase.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickAfterSuiteTests/AfterSuiteTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickAfterSuiteTests/AfterSuiteTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickAfterSuiteTests/AfterSuiteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickAfterSuiteTests/AfterSuiteTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickAfterSuiteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickAfterSuiteTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickFocusedTests/FocusedTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickFocusedTests/FocusedTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickFocusedTests/FocusedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickFocusedTests/FocusedTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickFocusedTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickFocusedTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTestHelpers/SpecRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTestHelpers/SpecRunner.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTestHelpers/TestRun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTestHelpers/TestRun.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTestHelpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTestHelpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Fixtures/FunctionalTests_BehaviorTests_Behaviors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Fixtures/FunctionalTests_BehaviorTests_Behaviors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/AfterEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/AfterEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BeforeEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BeforeSuiteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BeforeSuiteTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BehaviorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BehaviorTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BundleModuleNameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/BundleModuleNameTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ContextTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/CrossReferencingSpecs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/CrossReferencingSpecs.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/CurrentSpecTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/CurrentSpecTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/DescribeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/DescribeTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ItTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ItTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/AfterEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/AfterEachTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/BeforeEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/BeforeEachTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/BeforeSuiteTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/BeforeSuiteTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/FailureTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/FailureTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/FailureUsingXCTAssertTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/FailureUsingXCTAssertTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/ItTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/ItTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/PendingTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/PendingTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/SharedExamples+BeforeEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/SharedExamples+BeforeEachTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/SharedExamplesTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/ObjC/SharedExamplesTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/PendingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/PendingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/SharedExamplesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/FunctionalTests/SharedExamplesTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QCKSpecRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QCKSpecRunner.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QCKSpecRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QCKSpecRunner.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/QuickTestsBridgingHeader.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/QuickConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/Tests/QuickTests/QuickTests/QuickConfigurationTests.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-install-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/script/travis-install-linux -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-install-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/script/travis-install-macos -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-script-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/script/travis-script-linux -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-script-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Carthage/Checkouts/Quick/script/travis-script-macos -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/Color+iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/Color+iOS.xcscheme -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/Color+macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/Color+macOS.xcscheme -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/Color.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/Color.xcscheme -------------------------------------------------------------------------------- /Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+Demo.xcodeproj/xcuserdata/shaps.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Color+iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Color+iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Color+iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Color+iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Color+iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+iOS/Info.plist -------------------------------------------------------------------------------- /Color+macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/AppDelegate.swift -------------------------------------------------------------------------------- /Color+macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Color+macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Color+macOS/Color_macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/Color_macOS.entitlements -------------------------------------------------------------------------------- /Color+macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/Info.plist -------------------------------------------------------------------------------- /Color+macOS/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/MainMenu.xib -------------------------------------------------------------------------------- /Color+macOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color+macOS/ViewController.swift -------------------------------------------------------------------------------- /Color/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Color.h -------------------------------------------------------------------------------- /Color/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Info.plist -------------------------------------------------------------------------------- /Color/Source/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Source/Color.swift -------------------------------------------------------------------------------- /Color/Source/ColorModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Source/ColorModels.swift -------------------------------------------------------------------------------- /Color/Source/Convertibles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Source/Convertibles.swift -------------------------------------------------------------------------------- /Color/Source/Hexidecimal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Source/Hexidecimal.swift -------------------------------------------------------------------------------- /Color/Source/SystemColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/Color/Source/SystemColor.swift -------------------------------------------------------------------------------- /ColorTests/Color+Spec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Color+Spec.swift -------------------------------------------------------------------------------- /ColorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Info.plist -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Nimble: -------------------------------------------------------------------------------- 1 | Versions/Current/Nimble -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/CwlCatchException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/CwlCatchException.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/CwlMachBadInstructionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/CwlMachBadInstructionHandler.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/CwlPreconditionTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/CwlPreconditionTesting.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/DSL.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/NMBExceptionCapture.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/NMBStringify.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/Nimble-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/Nimble-Swift.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Headers/Nimble.h -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Nimble -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Nimble.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /ColorTests/Nimble.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Quick: -------------------------------------------------------------------------------- 1 | Versions/Current/Quick -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Headers/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Headers/QCKDSL.h -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Headers/Quick-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Headers/Quick-Swift.h -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Headers/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Headers/Quick.h -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Headers/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Headers/QuickConfiguration.h -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Headers/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Headers/QuickSpec.h -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Modules/Quick.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Quick -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Color/HEAD/ColorTests/Quick.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /ColorTests/Quick.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A --------------------------------------------------------------------------------