├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Objection-Info.plist ├── Objection.podspec ├── Objection.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── Objection-StaticLib.xcscheme │ ├── Objection-iOS.xcscheme │ ├── Objection.xcscheme │ ├── Specs-OSX.xcscheme │ └── Specs-iOS.xcscheme ├── README.md ├── Rakefile ├── Source ├── JSObjectFactory.h ├── JSObjectFactory.m ├── JSObjection.h ├── JSObjection.m ├── JSObjectionBindingEntry.h ├── JSObjectionBindingEntry.m ├── JSObjectionEntry.h ├── JSObjectionEntry.m ├── JSObjectionInjector.h ├── JSObjectionInjector.m ├── JSObjectionInjectorEntry.h ├── JSObjectionInjectorEntry.m ├── JSObjectionModule.h ├── JSObjectionModule.m ├── JSObjectionProviderEntry.h ├── JSObjectionProviderEntry.m ├── JSObjectionRuntimePropertyReflector.h ├── JSObjectionRuntimePropertyReflector.m ├── JSObjectionUtils.h ├── JSObjectionUtils.m ├── NSObject+Objection.h ├── NSObject+Objection.m └── Objection.h ├── Specs-OSX ├── Specs-OSX-Info.plist ├── Specs-OSX-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── Specs-iOS ├── Specs-iOS-Info.plist ├── Specs-iOS-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── Specs ├── AddAndRemoveModulesSpecs.m ├── BasicUsageSpecs.m ├── CircularDependencyFixtures.h ├── CircularDependencyFixtures.m ├── CircularDependencySpecs.m ├── Fixtures.h ├── Fixtures.m ├── InheritanceSpecs.m ├── InitializerFixtures.h ├── InitializerFixtures.m ├── InitializerSpecs.m ├── InjectionErrorFixtures.h ├── InjectionErrorFixtures.m ├── InjectionErrorsSpecs.m ├── ModuleFixtures.h ├── ModuleFixtures.m ├── ModuleUsageSpecs.m ├── SpecHelper.h ├── SpecHelper.m └── iOSSpecs-Info.plist ├── Stub.swift └── Vendor ├── OCHamcrest.framework ├── Headers │ ├── HCAllOf.h │ ├── HCAnyOf.h │ ├── HCAssertThat.h │ ├── HCBaseDescription.h │ ├── HCBaseMatcher.h │ ├── HCClassMatcher.h │ ├── HCCollect.h │ ├── HCConformsToProtocol.h │ ├── HCDescribedAs.h │ ├── HCDescription.h │ ├── HCDiagnosingMatcher.h │ ├── HCEvery.h │ ├── HCHasCount.h │ ├── HCHasDescription.h │ ├── HCHasProperty.h │ ├── HCInvocationMatcher.h │ ├── HCIs.h │ ├── HCIsAnything.h │ ├── HCIsCloseTo.h │ ├── HCIsCollectionContaining.h │ ├── HCIsCollectionContainingInAnyOrder.h │ ├── HCIsCollectionContainingInOrder.h │ ├── HCIsCollectionOnlyContaining.h │ ├── HCIsDictionaryContaining.h │ ├── HCIsDictionaryContainingEntries.h │ ├── HCIsDictionaryContainingKey.h │ ├── HCIsDictionaryContainingValue.h │ ├── HCIsEmptyCollection.h │ ├── HCIsEqual.h │ ├── HCIsEqualIgnoringCase.h │ ├── HCIsEqualIgnoringWhiteSpace.h │ ├── HCIsEqualToNumber.h │ ├── HCIsIn.h │ ├── HCIsInstanceOf.h │ ├── HCIsNil.h │ ├── HCIsNot.h │ ├── HCIsSame.h │ ├── HCIsTrueFalse.h │ ├── HCIsTypeOf.h │ ├── HCMatcher.h │ ├── HCNumberAssert.h │ ├── HCOrderingComparison.h │ ├── HCRequireNonNilObject.h │ ├── HCSelfDescribing.h │ ├── HCStringContains.h │ ├── HCStringContainsInOrder.h │ ├── HCStringDescription.h │ ├── HCStringEndsWith.h │ ├── HCStringStartsWith.h │ ├── HCSubstringMatcher.h │ ├── HCTestFailure.h │ ├── HCTestFailureHandler.h │ ├── HCTestFailureHandlerChain.h │ ├── HCThrowsException.h │ ├── HCWrapInMatcher.h │ └── OCHamcrest.h ├── OCHamcrest ├── Resources │ └── Info.plist └── Versions │ ├── A │ ├── Headers │ │ ├── HCAllOf.h │ │ ├── HCAnyOf.h │ │ ├── HCAssertThat.h │ │ ├── HCBaseDescription.h │ │ ├── HCBaseMatcher.h │ │ ├── HCClassMatcher.h │ │ ├── HCCollect.h │ │ ├── HCConformsToProtocol.h │ │ ├── HCDescribedAs.h │ │ ├── HCDescription.h │ │ ├── HCDiagnosingMatcher.h │ │ ├── HCEvery.h │ │ ├── HCHasCount.h │ │ ├── HCHasDescription.h │ │ ├── HCHasProperty.h │ │ ├── HCInvocationMatcher.h │ │ ├── HCIs.h │ │ ├── HCIsAnything.h │ │ ├── HCIsCloseTo.h │ │ ├── HCIsCollectionContaining.h │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ ├── HCIsCollectionContainingInOrder.h │ │ ├── HCIsCollectionOnlyContaining.h │ │ ├── HCIsDictionaryContaining.h │ │ ├── HCIsDictionaryContainingEntries.h │ │ ├── HCIsDictionaryContainingKey.h │ │ ├── HCIsDictionaryContainingValue.h │ │ ├── HCIsEmptyCollection.h │ │ ├── HCIsEqual.h │ │ ├── HCIsEqualIgnoringCase.h │ │ ├── HCIsEqualIgnoringWhiteSpace.h │ │ ├── HCIsEqualToNumber.h │ │ ├── HCIsIn.h │ │ ├── HCIsInstanceOf.h │ │ ├── HCIsNil.h │ │ ├── HCIsNot.h │ │ ├── HCIsSame.h │ │ ├── HCIsTrueFalse.h │ │ ├── HCIsTypeOf.h │ │ ├── HCMatcher.h │ │ ├── HCNumberAssert.h │ │ ├── HCOrderingComparison.h │ │ ├── HCRequireNonNilObject.h │ │ ├── HCSelfDescribing.h │ │ ├── HCStringContains.h │ │ ├── HCStringContainsInOrder.h │ │ ├── HCStringDescription.h │ │ ├── HCStringEndsWith.h │ │ ├── HCStringStartsWith.h │ │ ├── HCSubstringMatcher.h │ │ ├── HCTestFailure.h │ │ ├── HCTestFailureHandler.h │ │ ├── HCTestFailureHandlerChain.h │ │ ├── HCThrowsException.h │ │ ├── HCWrapInMatcher.h │ │ └── OCHamcrest.h │ ├── OCHamcrest │ └── Resources │ │ └── Info.plist │ └── Current │ ├── Headers │ ├── HCAllOf.h │ ├── HCAnyOf.h │ ├── HCAssertThat.h │ ├── HCBaseDescription.h │ ├── HCBaseMatcher.h │ ├── HCClassMatcher.h │ ├── HCCollect.h │ ├── HCConformsToProtocol.h │ ├── HCDescribedAs.h │ ├── HCDescription.h │ ├── HCDiagnosingMatcher.h │ ├── HCEvery.h │ ├── HCHasCount.h │ ├── HCHasDescription.h │ ├── HCHasProperty.h │ ├── HCInvocationMatcher.h │ ├── HCIs.h │ ├── HCIsAnything.h │ ├── HCIsCloseTo.h │ ├── HCIsCollectionContaining.h │ ├── HCIsCollectionContainingInAnyOrder.h │ ├── HCIsCollectionContainingInOrder.h │ ├── HCIsCollectionOnlyContaining.h │ ├── HCIsDictionaryContaining.h │ ├── HCIsDictionaryContainingEntries.h │ ├── HCIsDictionaryContainingKey.h │ ├── HCIsDictionaryContainingValue.h │ ├── HCIsEmptyCollection.h │ ├── HCIsEqual.h │ ├── HCIsEqualIgnoringCase.h │ ├── HCIsEqualIgnoringWhiteSpace.h │ ├── HCIsEqualToNumber.h │ ├── HCIsIn.h │ ├── HCIsInstanceOf.h │ ├── HCIsNil.h │ ├── HCIsNot.h │ ├── HCIsSame.h │ ├── HCIsTrueFalse.h │ ├── HCIsTypeOf.h │ ├── HCMatcher.h │ ├── HCNumberAssert.h │ ├── HCOrderingComparison.h │ ├── HCRequireNonNilObject.h │ ├── HCSelfDescribing.h │ ├── HCStringContains.h │ ├── HCStringContainsInOrder.h │ ├── HCStringDescription.h │ ├── HCStringEndsWith.h │ ├── HCStringStartsWith.h │ ├── HCSubstringMatcher.h │ ├── HCTestFailure.h │ ├── HCTestFailureHandler.h │ ├── HCTestFailureHandlerChain.h │ ├── HCThrowsException.h │ ├── HCWrapInMatcher.h │ └── OCHamcrest.h │ ├── OCHamcrest │ └── Resources │ └── Info.plist └── OCHamcrestIOS.framework ├── Headers ├── HCAllOf.h ├── HCAnyOf.h ├── HCAssertThat.h ├── HCBaseDescription.h ├── HCBaseMatcher.h ├── HCClassMatcher.h ├── HCCollect.h ├── HCConformsToProtocol.h ├── HCDescribedAs.h ├── HCDescription.h ├── HCDiagnosingMatcher.h ├── HCEvery.h ├── HCHasCount.h ├── HCHasDescription.h ├── HCHasProperty.h ├── HCInvocationMatcher.h ├── HCIs.h ├── HCIsAnything.h ├── HCIsCloseTo.h ├── HCIsCollectionContaining.h ├── HCIsCollectionContainingInAnyOrder.h ├── HCIsCollectionContainingInOrder.h ├── HCIsCollectionOnlyContaining.h ├── HCIsDictionaryContaining.h ├── HCIsDictionaryContainingEntries.h ├── HCIsDictionaryContainingKey.h ├── HCIsDictionaryContainingValue.h ├── HCIsEmptyCollection.h ├── HCIsEqual.h ├── HCIsEqualIgnoringCase.h ├── HCIsEqualIgnoringWhiteSpace.h ├── HCIsEqualToNumber.h ├── HCIsIn.h ├── HCIsInstanceOf.h ├── HCIsNil.h ├── HCIsNot.h ├── HCIsSame.h ├── HCIsTrueFalse.h ├── HCIsTypeOf.h ├── HCMatcher.h ├── HCNumberAssert.h ├── HCOrderingComparison.h ├── HCRequireNonNilObject.h ├── HCSelfDescribing.h ├── HCStringContains.h ├── HCStringContainsInOrder.h ├── HCStringDescription.h ├── HCStringEndsWith.h ├── HCStringStartsWith.h ├── HCSubstringMatcher.h ├── HCTestFailure.h ├── HCTestFailureHandler.h ├── HCTestFailureHandlerChain.h ├── HCThrowsException.h ├── HCWrapInMatcher.h └── OCHamcrestIOS.h ├── OCHamcrestIOS ├── Resources └── Info.plist └── Versions ├── A ├── Headers │ ├── HCAllOf.h │ ├── HCAnyOf.h │ ├── HCAssertThat.h │ ├── HCBaseDescription.h │ ├── HCBaseMatcher.h │ ├── HCClassMatcher.h │ ├── HCCollect.h │ ├── HCConformsToProtocol.h │ ├── HCDescribedAs.h │ ├── HCDescription.h │ ├── HCDiagnosingMatcher.h │ ├── HCEvery.h │ ├── HCHasCount.h │ ├── HCHasDescription.h │ ├── HCHasProperty.h │ ├── HCInvocationMatcher.h │ ├── HCIs.h │ ├── HCIsAnything.h │ ├── HCIsCloseTo.h │ ├── HCIsCollectionContaining.h │ ├── HCIsCollectionContainingInAnyOrder.h │ ├── HCIsCollectionContainingInOrder.h │ ├── HCIsCollectionOnlyContaining.h │ ├── HCIsDictionaryContaining.h │ ├── HCIsDictionaryContainingEntries.h │ ├── HCIsDictionaryContainingKey.h │ ├── HCIsDictionaryContainingValue.h │ ├── HCIsEmptyCollection.h │ ├── HCIsEqual.h │ ├── HCIsEqualIgnoringCase.h │ ├── HCIsEqualIgnoringWhiteSpace.h │ ├── HCIsEqualToNumber.h │ ├── HCIsIn.h │ ├── HCIsInstanceOf.h │ ├── HCIsNil.h │ ├── HCIsNot.h │ ├── HCIsSame.h │ ├── HCIsTrueFalse.h │ ├── HCIsTypeOf.h │ ├── HCMatcher.h │ ├── HCNumberAssert.h │ ├── HCOrderingComparison.h │ ├── HCRequireNonNilObject.h │ ├── HCSelfDescribing.h │ ├── HCStringContains.h │ ├── HCStringContainsInOrder.h │ ├── HCStringDescription.h │ ├── HCStringEndsWith.h │ ├── HCStringStartsWith.h │ ├── HCSubstringMatcher.h │ ├── HCTestFailure.h │ ├── HCTestFailureHandler.h │ ├── HCTestFailureHandlerChain.h │ ├── HCThrowsException.h │ ├── HCWrapInMatcher.h │ └── OCHamcrestIOS.h ├── OCHamcrestIOS └── Resources │ └── Info.plist └── Current ├── Headers ├── HCAllOf.h ├── HCAnyOf.h ├── HCAssertThat.h ├── HCBaseDescription.h ├── HCBaseMatcher.h ├── HCClassMatcher.h ├── HCCollect.h ├── HCConformsToProtocol.h ├── HCDescribedAs.h ├── HCDescription.h ├── HCDiagnosingMatcher.h ├── HCEvery.h ├── HCHasCount.h ├── HCHasDescription.h ├── HCHasProperty.h ├── HCInvocationMatcher.h ├── HCIs.h ├── HCIsAnything.h ├── HCIsCloseTo.h ├── HCIsCollectionContaining.h ├── HCIsCollectionContainingInAnyOrder.h ├── HCIsCollectionContainingInOrder.h ├── HCIsCollectionOnlyContaining.h ├── HCIsDictionaryContaining.h ├── HCIsDictionaryContainingEntries.h ├── HCIsDictionaryContainingKey.h ├── HCIsDictionaryContainingValue.h ├── HCIsEmptyCollection.h ├── HCIsEqual.h ├── HCIsEqualIgnoringCase.h ├── HCIsEqualIgnoringWhiteSpace.h ├── HCIsEqualToNumber.h ├── HCIsIn.h ├── HCIsInstanceOf.h ├── HCIsNil.h ├── HCIsNot.h ├── HCIsSame.h ├── HCIsTrueFalse.h ├── HCIsTypeOf.h ├── HCMatcher.h ├── HCNumberAssert.h ├── HCOrderingComparison.h ├── HCRequireNonNilObject.h ├── HCSelfDescribing.h ├── HCStringContains.h ├── HCStringContainsInOrder.h ├── HCStringDescription.h ├── HCStringEndsWith.h ├── HCStringStartsWith.h ├── HCSubstringMatcher.h ├── HCTestFailure.h ├── HCTestFailureHandler.h ├── HCTestFailureHandlerChain.h ├── HCThrowsException.h ├── HCWrapInMatcher.h └── OCHamcrestIOS.h ├── OCHamcrestIOS └── Resources └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "http://rubygems.org" 2 | gem "xcpretty" 3 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/LICENSE -------------------------------------------------------------------------------- /Objection-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection-Info.plist -------------------------------------------------------------------------------- /Objection.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.podspec -------------------------------------------------------------------------------- /Objection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Objection.xcodeproj/xcshareddata/xcschemes/Objection-StaticLib.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.xcodeproj/xcshareddata/xcschemes/Objection-StaticLib.xcscheme -------------------------------------------------------------------------------- /Objection.xcodeproj/xcshareddata/xcschemes/Objection-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.xcodeproj/xcshareddata/xcschemes/Objection-iOS.xcscheme -------------------------------------------------------------------------------- /Objection.xcodeproj/xcshareddata/xcschemes/Objection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.xcodeproj/xcshareddata/xcschemes/Objection.xcscheme -------------------------------------------------------------------------------- /Objection.xcodeproj/xcshareddata/xcschemes/Specs-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.xcodeproj/xcshareddata/xcschemes/Specs-OSX.xcscheme -------------------------------------------------------------------------------- /Objection.xcodeproj/xcshareddata/xcschemes/Specs-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Objection.xcodeproj/xcshareddata/xcschemes/Specs-iOS.xcscheme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Rakefile -------------------------------------------------------------------------------- /Source/JSObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectFactory.h -------------------------------------------------------------------------------- /Source/JSObjectFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectFactory.m -------------------------------------------------------------------------------- /Source/JSObjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjection.h -------------------------------------------------------------------------------- /Source/JSObjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjection.m -------------------------------------------------------------------------------- /Source/JSObjectionBindingEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionBindingEntry.h -------------------------------------------------------------------------------- /Source/JSObjectionBindingEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionBindingEntry.m -------------------------------------------------------------------------------- /Source/JSObjectionEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionEntry.h -------------------------------------------------------------------------------- /Source/JSObjectionEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionEntry.m -------------------------------------------------------------------------------- /Source/JSObjectionInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionInjector.h -------------------------------------------------------------------------------- /Source/JSObjectionInjector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionInjector.m -------------------------------------------------------------------------------- /Source/JSObjectionInjectorEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionInjectorEntry.h -------------------------------------------------------------------------------- /Source/JSObjectionInjectorEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionInjectorEntry.m -------------------------------------------------------------------------------- /Source/JSObjectionModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionModule.h -------------------------------------------------------------------------------- /Source/JSObjectionModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionModule.m -------------------------------------------------------------------------------- /Source/JSObjectionProviderEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionProviderEntry.h -------------------------------------------------------------------------------- /Source/JSObjectionProviderEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionProviderEntry.m -------------------------------------------------------------------------------- /Source/JSObjectionRuntimePropertyReflector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionRuntimePropertyReflector.h -------------------------------------------------------------------------------- /Source/JSObjectionRuntimePropertyReflector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionRuntimePropertyReflector.m -------------------------------------------------------------------------------- /Source/JSObjectionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionUtils.h -------------------------------------------------------------------------------- /Source/JSObjectionUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/JSObjectionUtils.m -------------------------------------------------------------------------------- /Source/NSObject+Objection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/NSObject+Objection.h -------------------------------------------------------------------------------- /Source/NSObject+Objection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/NSObject+Objection.m -------------------------------------------------------------------------------- /Source/Objection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Source/Objection.h -------------------------------------------------------------------------------- /Specs-OSX/Specs-OSX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs-OSX/Specs-OSX-Info.plist -------------------------------------------------------------------------------- /Specs-OSX/Specs-OSX-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs-OSX/Specs-OSX-Prefix.pch -------------------------------------------------------------------------------- /Specs-OSX/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Specs-iOS/Specs-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs-iOS/Specs-iOS-Info.plist -------------------------------------------------------------------------------- /Specs-iOS/Specs-iOS-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs-iOS/Specs-iOS-Prefix.pch -------------------------------------------------------------------------------- /Specs-iOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Specs/AddAndRemoveModulesSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/AddAndRemoveModulesSpecs.m -------------------------------------------------------------------------------- /Specs/BasicUsageSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/BasicUsageSpecs.m -------------------------------------------------------------------------------- /Specs/CircularDependencyFixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/CircularDependencyFixtures.h -------------------------------------------------------------------------------- /Specs/CircularDependencyFixtures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/CircularDependencyFixtures.m -------------------------------------------------------------------------------- /Specs/CircularDependencySpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/CircularDependencySpecs.m -------------------------------------------------------------------------------- /Specs/Fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/Fixtures.h -------------------------------------------------------------------------------- /Specs/Fixtures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/Fixtures.m -------------------------------------------------------------------------------- /Specs/InheritanceSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InheritanceSpecs.m -------------------------------------------------------------------------------- /Specs/InitializerFixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InitializerFixtures.h -------------------------------------------------------------------------------- /Specs/InitializerFixtures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InitializerFixtures.m -------------------------------------------------------------------------------- /Specs/InitializerSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InitializerSpecs.m -------------------------------------------------------------------------------- /Specs/InjectionErrorFixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InjectionErrorFixtures.h -------------------------------------------------------------------------------- /Specs/InjectionErrorFixtures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InjectionErrorFixtures.m -------------------------------------------------------------------------------- /Specs/InjectionErrorsSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/InjectionErrorsSpecs.m -------------------------------------------------------------------------------- /Specs/ModuleFixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/ModuleFixtures.h -------------------------------------------------------------------------------- /Specs/ModuleFixtures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/ModuleFixtures.m -------------------------------------------------------------------------------- /Specs/ModuleUsageSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/ModuleUsageSpecs.m -------------------------------------------------------------------------------- /Specs/SpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/SpecHelper.h -------------------------------------------------------------------------------- /Specs/SpecHelper.m: -------------------------------------------------------------------------------- 1 | #import "SpecHelper.h" 2 | -------------------------------------------------------------------------------- /Specs/iOSSpecs-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Specs/iOSSpecs-Info.plist -------------------------------------------------------------------------------- /Stub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Stub.swift -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCCollect.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCEvery.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Headers/OCHamcrest.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/OCHamcrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/OCHamcrest -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCCollect.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCEvery.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Headers/OCHamcrest.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/OCHamcrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/OCHamcrest -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCCollect.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCEvery.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Headers/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Headers/OCHamcrest.h -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/OCHamcrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/OCHamcrest -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrest.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCCollect.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCEvery.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Headers/OCHamcrestIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Headers/OCHamcrestIOS.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/OCHamcrestIOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/OCHamcrestIOS -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCCollect.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCEvery.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Headers/OCHamcrestIOS.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/OCHamcrestIOS -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCCollect.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCEvery.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIs.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/OCHamcrestIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Headers/OCHamcrestIOS.h -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/OCHamcrestIOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/OCHamcrestIOS -------------------------------------------------------------------------------- /Vendor/OCHamcrestIOS.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/objection/HEAD/Vendor/OCHamcrestIOS.framework/Versions/Current/Resources/Info.plist --------------------------------------------------------------------------------