├── .gitignore ├── .slather.yml ├── .travis.yml ├── CHANGELOG.md ├── Example ├── IntentKitDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── IntentKitDemo.xcscheme ├── IntentKitDemo │ ├── INKAppDelegate.h │ ├── INKAppDelegate.m │ ├── INKViewController.h │ ├── INKViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ └── Default-736h@3x.png │ │ └── settings.imageset │ │ │ ├── 740-gear.png │ │ │ ├── 740-gear@2x.png │ │ │ └── Contents.json │ ├── IntentKitDemo-Info.plist │ ├── IntentKitDemo-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── IntentKitTests │ ├── Helpers │ │ ├── UIViewController+Spec.h │ │ └── UIViewController+Spec.m │ ├── INKActivityPresenterSpec.m │ ├── INKActivitySpec.m │ ├── INKActivityViewControllerSpec.m │ ├── INKAppPlistLinter.m │ ├── INKBrowserHandlerSpec.m │ ├── INKDefaultsCellSpec.m │ ├── INKDefaultsManagerSpec.m │ ├── INKDefaultsViewControllerSpec.m │ ├── INKHandlerSharedExampleSpec.m │ ├── INKHandlerSpec.m │ ├── INKMapsHandlerSpec.m │ ├── INKPresentables │ │ ├── INKMailSheetSpec.m │ │ ├── INKTweetSheetSpec.m │ │ └── INKWebViewSpec.m │ ├── INKTwitterHandlerSpec.m │ ├── IntentKitTests-Info.plist │ ├── Matchers │ │ ├── EXPMatchers+beAValidAction.h │ │ ├── EXPMatchers+beAValidAction.m │ │ ├── EXPMatchers+haveAValidName.h │ │ └── EXPMatchers+haveAValidName.m │ └── en.lproj │ │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Pods │ ├── Expecta │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ ├── EXPBackwardCompatibility.h │ │ │ ├── EXPBackwardCompatibility.m │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPBlockDefinedMatcher.m │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPDoubleTuple.m │ │ │ ├── EXPExpect.h │ │ │ ├── EXPExpect.m │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPFloatTuple.m │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── EXPUnsupportedObject.m │ │ │ ├── Expecta.h │ │ │ ├── Expecta.m │ │ │ ├── ExpectaSupport.h │ │ │ ├── ExpectaSupport.m │ │ │ ├── NSObject+Expecta.h │ │ │ ├── NSValue+Expecta.h │ │ │ ├── NSValue+Expecta.m │ │ │ └── matchers │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatcherHelpers.m │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beNil.m │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+beginWith.m │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+conformTo.m │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+contain.m │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+endWith.m │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+equal.m │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ ├── EXPMatchers+notify.h │ │ │ ├── EXPMatchers+notify.m │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raise.m │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers+respondTo.m │ │ │ └── EXPMatchers.h │ ├── Local Podspecs │ │ └── IntentKit.podspec.json │ ├── MWLayoutHelpers │ │ ├── Classes │ │ │ ├── UIView+MWLayoutHelpers.h │ │ │ └── UIView+MWLayoutHelpers.m │ │ ├── LICENSE │ │ └── README.md │ ├── OCHamcrest │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── Source │ │ │ ├── Core │ │ │ ├── HCAssertThat.h │ │ │ ├── HCAssertThat.m │ │ │ ├── HCBaseDescription.h │ │ │ ├── HCBaseDescription.m │ │ │ ├── HCBaseMatcher.h │ │ │ ├── HCBaseMatcher.m │ │ │ ├── HCDescription.h │ │ │ ├── HCDiagnosingMatcher.h │ │ │ ├── HCDiagnosingMatcher.m │ │ │ ├── HCMatcher.h │ │ │ ├── HCSelfDescribing.h │ │ │ ├── HCStringDescription.h │ │ │ ├── HCStringDescription.m │ │ │ └── Helpers │ │ │ │ ├── HCCollect.h │ │ │ │ ├── HCCollect.m │ │ │ │ ├── HCInvocationMatcher.h │ │ │ │ ├── HCInvocationMatcher.m │ │ │ │ ├── HCRequireNonNilObject.h │ │ │ │ ├── HCRequireNonNilObject.m │ │ │ │ ├── HCRunloopRunner.h │ │ │ │ ├── HCRunloopRunner.m │ │ │ │ ├── HCWrapInMatcher.h │ │ │ │ ├── HCWrapInMatcher.m │ │ │ │ ├── NSInvocation+OCHamcrest.h │ │ │ │ ├── NSInvocation+OCHamcrest.m │ │ │ │ ├── ReturnValueGetters │ │ │ │ ├── HCBoolReturnGetter.h │ │ │ │ ├── HCBoolReturnGetter.m │ │ │ │ ├── HCCharReturnGetter.h │ │ │ │ ├── HCCharReturnGetter.m │ │ │ │ ├── HCDoubleReturnGetter.h │ │ │ │ ├── HCDoubleReturnGetter.m │ │ │ │ ├── HCFloatReturnGetter.h │ │ │ │ ├── HCFloatReturnGetter.m │ │ │ │ ├── HCIntReturnGetter.h │ │ │ │ ├── HCIntReturnGetter.m │ │ │ │ ├── HCLongLongReturnGetter.h │ │ │ │ ├── HCLongLongReturnGetter.m │ │ │ │ ├── HCLongReturnGetter.h │ │ │ │ ├── HCLongReturnGetter.m │ │ │ │ ├── HCObjectReturnGetter.h │ │ │ │ ├── HCObjectReturnGetter.m │ │ │ │ ├── HCReturnTypeHandlerChain.h │ │ │ │ ├── HCReturnTypeHandlerChain.m │ │ │ │ ├── HCReturnValueGetter.h │ │ │ │ ├── HCReturnValueGetter.m │ │ │ │ ├── HCShortReturnGetter.h │ │ │ │ ├── HCShortReturnGetter.m │ │ │ │ ├── HCUnsignedCharReturnGetter.h │ │ │ │ ├── HCUnsignedCharReturnGetter.m │ │ │ │ ├── HCUnsignedIntReturnGetter.h │ │ │ │ ├── HCUnsignedIntReturnGetter.m │ │ │ │ ├── HCUnsignedLongLongReturnGetter.h │ │ │ │ ├── HCUnsignedLongLongReturnGetter.m │ │ │ │ ├── HCUnsignedLongReturnGetter.h │ │ │ │ ├── HCUnsignedLongReturnGetter.m │ │ │ │ ├── HCUnsignedShortReturnGetter.h │ │ │ │ └── HCUnsignedShortReturnGetter.m │ │ │ │ └── TestFailureReporters │ │ │ │ ├── HCGenericTestFailureReporter.h │ │ │ │ ├── HCGenericTestFailureReporter.m │ │ │ │ ├── HCSenTestFailureReporter.h │ │ │ │ ├── HCSenTestFailureReporter.m │ │ │ │ ├── HCTestFailure.h │ │ │ │ ├── HCTestFailure.m │ │ │ │ ├── HCTestFailureReporter.h │ │ │ │ ├── HCTestFailureReporter.m │ │ │ │ ├── HCTestFailureReporterChain.h │ │ │ │ ├── HCTestFailureReporterChain.m │ │ │ │ ├── HCXCTestFailureReporter.h │ │ │ │ └── HCXCTestFailureReporter.m │ │ │ ├── Library │ │ │ ├── Collection │ │ │ │ ├── HCEvery.h │ │ │ │ ├── HCEvery.m │ │ │ │ ├── HCHasCount.h │ │ │ │ ├── HCHasCount.m │ │ │ │ ├── HCIsCollectionContaining.h │ │ │ │ ├── HCIsCollectionContaining.m │ │ │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ │ │ ├── HCIsCollectionContainingInAnyOrder.m │ │ │ │ ├── HCIsCollectionContainingInOrder.h │ │ │ │ ├── HCIsCollectionContainingInOrder.m │ │ │ │ ├── HCIsCollectionContainingInRelativeOrder.h │ │ │ │ ├── HCIsCollectionContainingInRelativeOrder.m │ │ │ │ ├── HCIsCollectionOnlyContaining.h │ │ │ │ ├── HCIsCollectionOnlyContaining.m │ │ │ │ ├── HCIsDictionaryContaining.h │ │ │ │ ├── HCIsDictionaryContaining.m │ │ │ │ ├── HCIsDictionaryContainingEntries.h │ │ │ │ ├── HCIsDictionaryContainingEntries.m │ │ │ │ ├── HCIsDictionaryContainingKey.h │ │ │ │ ├── HCIsDictionaryContainingKey.m │ │ │ │ ├── HCIsDictionaryContainingValue.h │ │ │ │ ├── HCIsDictionaryContainingValue.m │ │ │ │ ├── HCIsEmptyCollection.h │ │ │ │ ├── HCIsEmptyCollection.m │ │ │ │ ├── HCIsIn.h │ │ │ │ └── HCIsIn.m │ │ │ ├── Decorator │ │ │ │ ├── HCDescribedAs.h │ │ │ │ ├── HCDescribedAs.m │ │ │ │ ├── HCIs.h │ │ │ │ └── HCIs.m │ │ │ ├── Logical │ │ │ │ ├── HCAllOf.h │ │ │ │ ├── HCAllOf.m │ │ │ │ ├── HCAnyOf.h │ │ │ │ ├── HCAnyOf.m │ │ │ │ ├── HCIsAnything.h │ │ │ │ ├── HCIsAnything.m │ │ │ │ ├── HCIsNot.h │ │ │ │ └── HCIsNot.m │ │ │ ├── Number │ │ │ │ ├── HCIsCloseTo.h │ │ │ │ ├── HCIsCloseTo.m │ │ │ │ ├── HCIsEqualToNumber.h │ │ │ │ ├── HCIsEqualToNumber.m │ │ │ │ ├── HCIsTrueFalse.h │ │ │ │ ├── HCIsTrueFalse.m │ │ │ │ ├── HCNumberAssert.h │ │ │ │ ├── HCNumberAssert.m │ │ │ │ ├── HCOrderingComparison.h │ │ │ │ └── HCOrderingComparison.m │ │ │ ├── Object │ │ │ │ ├── HCArgumentCaptor.h │ │ │ │ ├── HCArgumentCaptor.m │ │ │ │ ├── HCClassMatcher.h │ │ │ │ ├── HCClassMatcher.m │ │ │ │ ├── HCConformsToProtocol.h │ │ │ │ ├── HCConformsToProtocol.m │ │ │ │ ├── HCHasDescription.h │ │ │ │ ├── HCHasDescription.m │ │ │ │ ├── HCHasProperty.h │ │ │ │ ├── HCHasProperty.m │ │ │ │ ├── HCIsEqual.h │ │ │ │ ├── HCIsEqual.m │ │ │ │ ├── HCIsInstanceOf.h │ │ │ │ ├── HCIsInstanceOf.m │ │ │ │ ├── HCIsNil.h │ │ │ │ ├── HCIsNil.m │ │ │ │ ├── HCIsSame.h │ │ │ │ ├── HCIsSame.m │ │ │ │ ├── HCIsTypeOf.h │ │ │ │ ├── HCIsTypeOf.m │ │ │ │ ├── HCThrowsException.h │ │ │ │ └── HCThrowsException.m │ │ │ └── Text │ │ │ │ ├── HCIsEqualIgnoringCase.h │ │ │ │ ├── HCIsEqualIgnoringCase.m │ │ │ │ ├── HCIsEqualIgnoringWhiteSpace.h │ │ │ │ ├── HCIsEqualIgnoringWhiteSpace.m │ │ │ │ ├── HCStringContains.h │ │ │ │ ├── HCStringContains.m │ │ │ │ ├── HCStringContainsInOrder.h │ │ │ │ ├── HCStringContainsInOrder.m │ │ │ │ ├── HCStringEndsWith.h │ │ │ │ ├── HCStringEndsWith.m │ │ │ │ ├── HCStringStartsWith.h │ │ │ │ ├── HCStringStartsWith.m │ │ │ │ ├── HCSubstringMatcher.h │ │ │ │ └── HCSubstringMatcher.m │ │ │ └── OCHamcrest.h │ ├── OCMockito │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── Source │ │ │ ├── OCMockito │ │ │ ├── Core │ │ │ │ ├── MKTMockingProgress.h │ │ │ │ ├── MKTMockingProgress.m │ │ │ │ ├── MKTMockitoCore.h │ │ │ │ ├── MKTMockitoCore.m │ │ │ │ ├── MKTNonObjectArgumentMatching.h │ │ │ │ ├── MKTTestLocation.h │ │ │ │ ├── MKTTestLocation.m │ │ │ │ ├── OCMockito.h │ │ │ │ └── OCMockito.m │ │ │ ├── Helpers │ │ │ │ ├── ArgumentGetters │ │ │ │ │ ├── MKTArgumentGetter.h │ │ │ │ │ ├── MKTArgumentGetter.m │ │ │ │ │ ├── MKTArgumentGetterChain.h │ │ │ │ │ ├── MKTArgumentGetterChain.m │ │ │ │ │ ├── MKTBoolArgumentGetter.h │ │ │ │ │ ├── MKTBoolArgumentGetter.m │ │ │ │ │ ├── MKTCharArgumentGetter.h │ │ │ │ │ ├── MKTCharArgumentGetter.m │ │ │ │ │ ├── MKTClassArgumentGetter.h │ │ │ │ │ ├── MKTClassArgumentGetter.m │ │ │ │ │ ├── MKTDoubleArgumentGetter.h │ │ │ │ │ ├── MKTDoubleArgumentGetter.m │ │ │ │ │ ├── MKTFloatArgumentGetter.h │ │ │ │ │ ├── MKTFloatArgumentGetter.m │ │ │ │ │ ├── MKTIntArgumentGetter.h │ │ │ │ │ ├── MKTIntArgumentGetter.m │ │ │ │ │ ├── MKTLongArgumentGetter.h │ │ │ │ │ ├── MKTLongArgumentGetter.m │ │ │ │ │ ├── MKTLongLongArgumentGetter.h │ │ │ │ │ ├── MKTLongLongArgumentGetter.m │ │ │ │ │ ├── MKTObjectArgumentGetter.h │ │ │ │ │ ├── MKTObjectArgumentGetter.m │ │ │ │ │ ├── MKTPointerArgumentGetter.h │ │ │ │ │ ├── MKTPointerArgumentGetter.m │ │ │ │ │ ├── MKTSelectorArgumentGetter.h │ │ │ │ │ ├── MKTSelectorArgumentGetter.m │ │ │ │ │ ├── MKTShortArgumentGetter.h │ │ │ │ │ ├── MKTShortArgumentGetter.m │ │ │ │ │ ├── MKTStructArgumentGetter.h │ │ │ │ │ ├── MKTStructArgumentGetter.m │ │ │ │ │ ├── MKTUnsignedCharArgumentGetter.h │ │ │ │ │ ├── MKTUnsignedCharArgumentGetter.m │ │ │ │ │ ├── MKTUnsignedIntArgumentGetter.h │ │ │ │ │ ├── MKTUnsignedIntArgumentGetter.m │ │ │ │ │ ├── MKTUnsignedLongArgumentGetter.h │ │ │ │ │ ├── MKTUnsignedLongArgumentGetter.m │ │ │ │ │ ├── MKTUnsignedLongLongArgumentGetter.h │ │ │ │ │ ├── MKTUnsignedLongLongArgumentGetter.m │ │ │ │ │ ├── MKTUnsignedShortArgumentGetter.h │ │ │ │ │ └── MKTUnsignedShortArgumentGetter.m │ │ │ │ └── ReturnValueSetters │ │ │ │ │ ├── MKTBoolReturnSetter.h │ │ │ │ │ ├── MKTBoolReturnSetter.m │ │ │ │ │ ├── MKTCharReturnSetter.h │ │ │ │ │ ├── MKTCharReturnSetter.m │ │ │ │ │ ├── MKTClassReturnSetter.h │ │ │ │ │ ├── MKTClassReturnSetter.m │ │ │ │ │ ├── MKTDoubleReturnSetter.h │ │ │ │ │ ├── MKTDoubleReturnSetter.m │ │ │ │ │ ├── MKTFloatReturnSetter.h │ │ │ │ │ ├── MKTFloatReturnSetter.m │ │ │ │ │ ├── MKTIntReturnSetter.h │ │ │ │ │ ├── MKTIntReturnSetter.m │ │ │ │ │ ├── MKTLongLongReturnSetter.h │ │ │ │ │ ├── MKTLongLongReturnSetter.m │ │ │ │ │ ├── MKTLongReturnSetter.h │ │ │ │ │ ├── MKTLongReturnSetter.m │ │ │ │ │ ├── MKTObjectReturnSetter.h │ │ │ │ │ ├── MKTObjectReturnSetter.m │ │ │ │ │ ├── MKTReturnValueSetter.h │ │ │ │ │ ├── MKTReturnValueSetter.m │ │ │ │ │ ├── MKTReturnValueSetterChain.h │ │ │ │ │ ├── MKTReturnValueSetterChain.m │ │ │ │ │ ├── MKTShortReturnSetter.h │ │ │ │ │ ├── MKTShortReturnSetter.m │ │ │ │ │ ├── MKTStructReturnSetter.h │ │ │ │ │ ├── MKTStructReturnSetter.m │ │ │ │ │ ├── MKTUnsignedCharReturnSetter.h │ │ │ │ │ ├── MKTUnsignedCharReturnSetter.m │ │ │ │ │ ├── MKTUnsignedIntReturnSetter.h │ │ │ │ │ ├── MKTUnsignedIntReturnSetter.m │ │ │ │ │ ├── MKTUnsignedLongLongReturnSetter.h │ │ │ │ │ ├── MKTUnsignedLongLongReturnSetter.m │ │ │ │ │ ├── MKTUnsignedLongReturnSetter.h │ │ │ │ │ ├── MKTUnsignedLongReturnSetter.m │ │ │ │ │ ├── MKTUnsignedShortReturnSetter.h │ │ │ │ │ └── MKTUnsignedShortReturnSetter.m │ │ │ ├── Invocation │ │ │ │ ├── MKTCallStackElement.h │ │ │ │ ├── MKTCallStackElement.m │ │ │ │ ├── MKTFilterCallStack.h │ │ │ │ ├── MKTFilterCallStack.m │ │ │ │ ├── MKTInvocation.h │ │ │ │ ├── MKTInvocation.m │ │ │ │ ├── MKTInvocationMatcher.h │ │ │ │ ├── MKTInvocationMatcher.m │ │ │ │ ├── MKTLocation.h │ │ │ │ ├── MKTLocation.m │ │ │ │ ├── MKTMatchingInvocationsFinder.h │ │ │ │ ├── MKTMatchingInvocationsFinder.m │ │ │ │ ├── MKTParseCallStack.h │ │ │ │ ├── MKTParseCallStack.m │ │ │ │ ├── MKTPrinter.h │ │ │ │ ├── MKTPrinter.m │ │ │ │ ├── NSInvocation+OCMockito.h │ │ │ │ └── NSInvocation+OCMockito.m │ │ │ ├── Mocking │ │ │ │ ├── MKTBaseMockObject.h │ │ │ │ ├── MKTBaseMockObject.m │ │ │ │ ├── MKTClassObjectMock.h │ │ │ │ ├── MKTClassObjectMock.m │ │ │ │ ├── MKTDynamicProperties.h │ │ │ │ ├── MKTDynamicProperties.m │ │ │ │ ├── MKTObjectAndProtocolMock.h │ │ │ │ ├── MKTObjectAndProtocolMock.m │ │ │ │ ├── MKTObjectMock.h │ │ │ │ ├── MKTObjectMock.m │ │ │ │ ├── MKTProtocolMock.h │ │ │ │ └── MKTProtocolMock.m │ │ │ ├── Stubbing │ │ │ │ ├── MKTAnswer.h │ │ │ │ ├── MKTExecutesBlock.h │ │ │ │ ├── MKTExecutesBlock.m │ │ │ │ ├── MKTInvocationContainer.h │ │ │ │ ├── MKTInvocationContainer.m │ │ │ │ ├── MKTOngoingStubbing.h │ │ │ │ ├── MKTOngoingStubbing.m │ │ │ │ ├── MKTReturnsValue.h │ │ │ │ ├── MKTReturnsValue.m │ │ │ │ ├── MKTStubbedInvocationMatcher.h │ │ │ │ ├── MKTStubbedInvocationMatcher.m │ │ │ │ ├── MKTThrowsException.h │ │ │ │ └── MKTThrowsException.m │ │ │ └── Verifying │ │ │ │ ├── MKTAtLeastNumberOfInvocationsChecker.h │ │ │ │ ├── MKTAtLeastNumberOfInvocationsChecker.m │ │ │ │ ├── MKTAtLeastTimes.h │ │ │ │ ├── MKTAtLeastTimes.m │ │ │ │ ├── MKTAtMostNumberOfInvocationsChecker.h │ │ │ │ ├── MKTAtMostNumberOfInvocationsChecker.m │ │ │ │ ├── MKTAtMostTimes.h │ │ │ │ ├── MKTAtMostTimes.m │ │ │ │ ├── MKTExactTimes.h │ │ │ │ ├── MKTExactTimes.m │ │ │ │ ├── MKTInvocationsChecker.h │ │ │ │ ├── MKTInvocationsChecker.m │ │ │ │ ├── MKTMissingInvocationChecker.h │ │ │ │ ├── MKTMissingInvocationChecker.m │ │ │ │ ├── MKTNumberOfInvocationsChecker.h │ │ │ │ ├── MKTNumberOfInvocationsChecker.m │ │ │ │ ├── MKTVerificationData.h │ │ │ │ ├── MKTVerificationData.m │ │ │ │ └── MKTVerificationMode.h │ │ │ └── ThirdParty │ │ │ └── TPDWeakProxy-1.1.0 │ │ │ └── TPDWeakProxy │ │ │ ├── MKT_TPDWeakProxy.h │ │ │ └── MKT_TPDWeakProxy.m │ └── Specta │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ ├── SPTExample.h │ │ ├── SPTExample.m │ │ ├── SPTExampleGroup.h │ │ ├── SPTExampleGroup.m │ │ ├── SPTNestedReporter.h │ │ ├── SPTNestedReporter.m │ │ ├── SPTReporter.h │ │ ├── SPTReporter.m │ │ ├── SPTSharedExampleGroups.h │ │ ├── SPTSharedExampleGroups.m │ │ ├── SPTSpec.h │ │ ├── SPTSpec.m │ │ ├── SPTXCTestCase.h │ │ ├── SPTXCTestCase.m │ │ ├── SPTXCTestReporter.h │ │ ├── SPTXCTestReporter.m │ │ ├── Specta.h │ │ ├── Specta.m │ │ ├── SpectaSupport.h │ │ ├── SpectaTypes.h │ │ ├── SpectaUtility.h │ │ ├── SpectaUtility.m │ │ ├── XCTestCase+Specta.h │ │ ├── XCTestCase+Specta.m │ │ ├── XCTestLog+Specta.h │ │ ├── XCTestLog+Specta.m │ │ ├── XCTestRun+Specta.h │ │ └── XCTestRun+Specta.m ├── Rakefile └── script │ └── generate-docs.sh ├── IntentKit.podspec ├── IntentKit ├── Apps │ ├── 1Password │ │ ├── 1Password.plist │ │ ├── 1Password.png │ │ ├── 1Password@2x.png │ │ ├── 1Password@2x~ipad.png │ │ └── 1Password~ipad.png │ ├── Chrome │ │ ├── Chrome.plist │ │ ├── Chrome.png │ │ ├── Chrome@2x.png │ │ ├── Chrome@2x~ipad.png │ │ └── Chrome~ipad.png │ ├── Defaults │ │ ├── INKBrowserHandler.plist │ │ ├── INKFacebookHandler.plist │ │ ├── INKGPlusHandler.plist │ │ ├── INKMailHandler.plist │ │ ├── INKMapsHandler.plist │ │ └── INKTwitterHandler.plist │ ├── Facebook │ │ ├── Facebook.plist │ │ ├── Facebook.png │ │ ├── Facebook@2x.png │ │ ├── Facebook@2x~ipad.png │ │ └── Facebook~ipad.png │ ├── Gmail │ │ ├── Gmail.plist │ │ ├── Gmail.png │ │ ├── Gmail@2x.png │ │ ├── Gmail@2x~ipad.png │ │ └── Gmail~ipad.png │ ├── Google Maps │ │ ├── Google Maps.plist │ │ ├── Google Maps.png │ │ ├── Google Maps@2x.png │ │ ├── Google Maps@2x~ipad.png │ │ └── Google Maps~ipad.png │ ├── Google+ │ │ ├── Google+.plist │ │ ├── Google+.png │ │ ├── Google+@2x.png │ │ ├── Google+@2x~ipad.png │ │ └── Google+~ipad.png │ ├── INKMailSheet │ │ ├── INKMailSheet.h │ │ ├── INKMailSheet.m │ │ ├── INKMailSheet.plist │ │ ├── INKMailSheet.png │ │ ├── INKMailSheet@2x.png │ │ ├── INKMailSheet@2x~ipad.png │ │ └── INKMailSheet~ipad.png │ ├── INKTweetSheet │ │ ├── INKTweetSheet.h │ │ ├── INKTweetSheet.m │ │ ├── INKTweetSheet.plist │ │ ├── INKTweetSheet.png │ │ ├── INKTweetSheet@2x.png │ │ ├── INKTweetSheet@2x~ipad.png │ │ └── INKTweetSheet~ipad.png │ ├── INKWebView │ │ ├── INKWebView.h │ │ ├── INKWebView.m │ │ ├── INKWebView.plist │ │ ├── INKWebView.png │ │ ├── INKWebView@2x.png │ │ ├── INKWebView@2x~ipad.png │ │ ├── INKWebViewController.h │ │ ├── INKWebViewController.m │ │ └── INKWebView~ipad.png │ ├── IntentKitBundle-Info.plist │ ├── Mail │ │ ├── Mail.plist │ │ ├── Mail.png │ │ ├── Mail@2x.png │ │ ├── Mail@2x~ipad.png │ │ └── Mail~ipad.png │ ├── Maps │ │ ├── Maps.plist │ │ ├── Maps.png │ │ ├── Maps@2x.png │ │ ├── Maps@2x~ipad.png │ │ └── Maps~ipad.png │ ├── Safari │ │ ├── Safari.plist │ │ ├── Safari.png │ │ ├── Safari@2x.png │ │ ├── Safari@2x~ipad.png │ │ └── Safari~ipad.png │ ├── Tweetbot │ │ ├── Tweetbot.plist │ │ ├── Tweetbot.png │ │ ├── Tweetbot@2x.png │ │ ├── Tweetbot@2x~ipad.png │ │ └── Tweetbot~ipad.png │ ├── Twitter │ │ ├── Twitter.plist │ │ ├── Twitter.png │ │ ├── Twitter@2x.png │ │ ├── Twitter@2x~ipad.png │ │ └── Twitter~ipad.png │ ├── Twitterrific │ │ ├── Twitterrific.plist │ │ ├── Twitterrific.png │ │ ├── Twitterrific@2x.png │ │ ├── Twitterrific@2x~ipad.png │ │ └── Twitterrific~ipad.png │ └── Waze │ │ ├── Waze.plist │ │ ├── Waze.png │ │ ├── Waze@2x.png │ │ ├── Waze@2x~ipad.png │ │ └── Waze~ipad.png ├── Core │ ├── Helpers │ │ ├── NSString+Helpers.h │ │ └── NSString+Helpers.m │ ├── INKActivity.h │ ├── INKActivity.m │ ├── INKActivityViewController │ │ ├── INKActivityCell.h │ │ ├── INKActivityCell.m │ │ ├── INKActivityPresenter.h │ │ ├── INKActivityPresenter.m │ │ ├── INKActivityViewController.h │ │ └── INKActivityViewController.m │ ├── INKAppIconView.h │ ├── INKAppIconView.m │ ├── INKApplicationList.h │ ├── INKApplicationList.m │ ├── INKDefaultToggleView.h │ ├── INKDefaultToggleView.m │ ├── INKDefaultsManager.h │ ├── INKDefaultsManager.m │ ├── INKDefaultsViewController │ │ ├── INKDefaultsCell.h │ │ ├── INKDefaultsCell.m │ │ ├── INKDefaultsViewController.h │ │ └── INKDefaultsViewController.m │ ├── INKHandler.h │ ├── INKHandler.m │ ├── INKLocalizedString.h │ ├── INKLocalizedString.m │ ├── INKOpenInActivity.h │ ├── INKOpenInActivity.m │ ├── INKPresentable.h │ ├── IntentKit.h │ └── IntentKit.m ├── Handlers │ ├── INKBrowserHandler.h │ ├── INKBrowserHandler.m │ ├── INKFacebookHandler.h │ ├── INKFacebookHandler.m │ ├── INKGPlusHandler.h │ ├── INKGPlusHandler.m │ ├── INKMailHandler.h │ ├── INKMailHandler.m │ ├── INKMapsHandler.h │ ├── INKMapsHandler.m │ ├── INKTwitterHandler.h │ └── INKTwitterHandler.m ├── Images │ ├── back.png │ ├── back@2x.png │ ├── forward.png │ ├── forward@2x.png │ ├── iconBorder.png │ ├── iconBorder@2x.png │ ├── iconBorder@2x~ipad.png │ ├── iconBorder~ipad.png │ ├── iconMask.png │ ├── iconMask@2x.png │ ├── iconMask@2x~ipad.png │ ├── iconMask~ipad.png │ ├── share.png │ └── share@2x.png ├── IntentKit-Info.plist ├── IntentKit-Localizations.bundle │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ └── nl.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings └── IntentKit-Prefix.pch ├── LICENSE ├── README.md ├── example-defaults.gif └── example.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/.slather.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/IntentKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/IntentKitDemo.xcodeproj/xcshareddata/xcschemes/IntentKitDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo.xcodeproj/xcshareddata/xcschemes/IntentKitDemo.xcscheme -------------------------------------------------------------------------------- /Example/IntentKitDemo/INKAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/INKAppDelegate.h -------------------------------------------------------------------------------- /Example/IntentKitDemo/INKAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/INKAppDelegate.m -------------------------------------------------------------------------------- /Example/IntentKitDemo/INKViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/INKViewController.h -------------------------------------------------------------------------------- /Example/IntentKitDemo/INKViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/INKViewController.m -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/settings.imageset/740-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/settings.imageset/740-gear.png -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/settings.imageset/740-gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/settings.imageset/740-gear@2x.png -------------------------------------------------------------------------------- /Example/IntentKitDemo/Images.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/Images.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /Example/IntentKitDemo/IntentKitDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/IntentKitDemo-Info.plist -------------------------------------------------------------------------------- /Example/IntentKitDemo/IntentKitDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/IntentKitDemo-Prefix.pch -------------------------------------------------------------------------------- /Example/IntentKitDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/IntentKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitDemo/main.m -------------------------------------------------------------------------------- /Example/IntentKitTests/Helpers/UIViewController+Spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/Helpers/UIViewController+Spec.h -------------------------------------------------------------------------------- /Example/IntentKitTests/Helpers/UIViewController+Spec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/Helpers/UIViewController+Spec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKActivityPresenterSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKActivityPresenterSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKActivitySpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKActivitySpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKActivityViewControllerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKActivityViewControllerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKAppPlistLinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKAppPlistLinter.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKBrowserHandlerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKBrowserHandlerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKDefaultsCellSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKDefaultsCellSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKDefaultsManagerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKDefaultsManagerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKDefaultsViewControllerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKDefaultsViewControllerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKHandlerSharedExampleSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKHandlerSharedExampleSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKHandlerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKHandlerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKMapsHandlerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKMapsHandlerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKPresentables/INKMailSheetSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKPresentables/INKMailSheetSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKPresentables/INKTweetSheetSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKPresentables/INKTweetSheetSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKPresentables/INKWebViewSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKPresentables/INKWebViewSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/INKTwitterHandlerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/INKTwitterHandlerSpec.m -------------------------------------------------------------------------------- /Example/IntentKitTests/IntentKitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/IntentKitTests-Info.plist -------------------------------------------------------------------------------- /Example/IntentKitTests/Matchers/EXPMatchers+beAValidAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/Matchers/EXPMatchers+beAValidAction.h -------------------------------------------------------------------------------- /Example/IntentKitTests/Matchers/EXPMatchers+beAValidAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/Matchers/EXPMatchers+beAValidAction.m -------------------------------------------------------------------------------- /Example/IntentKitTests/Matchers/EXPMatchers+haveAValidName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/Matchers/EXPMatchers+haveAValidName.h -------------------------------------------------------------------------------- /Example/IntentKitTests/Matchers/EXPMatchers+haveAValidName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/IntentKitTests/Matchers/EXPMatchers+haveAValidName.m -------------------------------------------------------------------------------- /Example/IntentKitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBackwardCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPBackwardCompatibility.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBackwardCompatibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPBackwardCompatibility.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPExpect.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPFloatTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/Expecta.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/ExpectaSupport.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/NSValue+Expecta.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+notify.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+notify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+notify.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/src/matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Expecta/src/matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/IntentKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Local Podspecs/IntentKit.podspec.json -------------------------------------------------------------------------------- /Example/Pods/MWLayoutHelpers/Classes/UIView+MWLayoutHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/MWLayoutHelpers/Classes/UIView+MWLayoutHelpers.h -------------------------------------------------------------------------------- /Example/Pods/MWLayoutHelpers/Classes/UIView+MWLayoutHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/MWLayoutHelpers/Classes/UIView+MWLayoutHelpers.m -------------------------------------------------------------------------------- /Example/Pods/MWLayoutHelpers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/MWLayoutHelpers/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MWLayoutHelpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/MWLayoutHelpers/README.md -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/LICENSE.txt -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/README.md -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCAssertThat.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCAssertThat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCAssertThat.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCBaseDescription.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCBaseDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCBaseDescription.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCDescription.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCDiagnosingMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCDiagnosingMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCStringDescription.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/HCStringDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/HCStringDescription.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCCollect.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCRunloopRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCRunloopRunner.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCRunloopRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCRunloopRunner.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/NSInvocation+OCHamcrest.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailure.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailure.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCEvery.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCEvery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCEvery.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCHasCount.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInRelativeOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInRelativeOrder.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInRelativeOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInRelativeOrder.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Decorator/HCDescribedAs.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCIsAnything.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCIsEqualToNumber.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCIsTrueFalse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCIsTrueFalse.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCNumberAssert.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Number/HCOrderingComparison.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCArgumentCaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCArgumentCaptor.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCArgumentCaptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCArgumentCaptor.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCConformsToProtocol.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCHasDescription.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCHasProperty.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsInstanceOf.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCThrowsException.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Object/HCThrowsException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Object/HCThrowsException.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringContains.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringContains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringContains.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringContainsInOrder.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringEndsWith.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCStringStartsWith.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/Library/Text/HCSubstringMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCHamcrest/Source/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCHamcrest/Source/OCHamcrest.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/LICENSE.txt -------------------------------------------------------------------------------- /Example/Pods/OCMockito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/README.md -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockingProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockingProgress.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockingProgress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockingProgress.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockitoCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockitoCore.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockitoCore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTMockitoCore.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTNonObjectArgumentMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTNonObjectArgumentMatching.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTTestLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTTestLocation.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/MKTTestLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/MKTTestLocation.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/OCMockito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/OCMockito.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Core/OCMockito.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Core/OCMockito.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTStructReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTCallStackElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTCallStackElement.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTCallStackElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTCallStackElement.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTFilterCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTFilterCallStack.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTFilterCallStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTFilterCallStack.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocation.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocation.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTInvocationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTLocation.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTLocation.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTMatchingInvocationsFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTMatchingInvocationsFinder.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTMatchingInvocationsFinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTMatchingInvocationsFinder.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTParseCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTParseCallStack.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTParseCallStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTParseCallStack.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTPrinter.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/MKTPrinter.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/NSInvocation+OCMockito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/NSInvocation+OCMockito.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Invocation/NSInvocation+OCMockito.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Invocation/NSInvocation+OCMockito.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTBaseMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTBaseMockObject.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTBaseMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTBaseMockObject.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTClassObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTClassObjectMock.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTClassObjectMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTClassObjectMock.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTDynamicProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTDynamicProperties.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTDynamicProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTDynamicProperties.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectAndProtocolMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectAndProtocolMock.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectMock.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTObjectMock.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTProtocolMock.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTProtocolMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Mocking/MKTProtocolMock.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTAnswer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTAnswer.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTExecutesBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTExecutesBlock.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTExecutesBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTExecutesBlock.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTInvocationContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTInvocationContainer.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTInvocationContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTInvocationContainer.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTOngoingStubbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTOngoingStubbing.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTOngoingStubbing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTOngoingStubbing.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTReturnsValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTReturnsValue.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTReturnsValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTReturnsValue.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTStubbedInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTStubbedInvocationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTStubbedInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTStubbedInvocationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTThrowsException.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTThrowsException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Stubbing/MKTThrowsException.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastNumberOfInvocationsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastNumberOfInvocationsChecker.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastNumberOfInvocationsChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastNumberOfInvocationsChecker.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastTimes.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtLeastTimes.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostNumberOfInvocationsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostNumberOfInvocationsChecker.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostNumberOfInvocationsChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostNumberOfInvocationsChecker.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostTimes.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTAtMostTimes.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTExactTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTExactTimes.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTExactTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTExactTimes.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTInvocationsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTInvocationsChecker.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTInvocationsChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTInvocationsChecker.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTMissingInvocationChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTMissingInvocationChecker.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTMissingInvocationChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTMissingInvocationChecker.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTNumberOfInvocationsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTNumberOfInvocationsChecker.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTNumberOfInvocationsChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTNumberOfInvocationsChecker.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTVerificationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTVerificationData.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTVerificationData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTVerificationData.m -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTVerificationMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/OCMockito/Verifying/MKTVerificationMode.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.h -------------------------------------------------------------------------------- /Example/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/OCMockito/Source/ThirdParty/TPDWeakProxy-1.1.0/TPDWeakProxy/MKT_TPDWeakProxy.m -------------------------------------------------------------------------------- /Example/Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/README.md -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTExample.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTExampleGroup.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTNestedReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTNestedReporter.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTNestedReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTNestedReporter.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTReporter.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTReporter.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTSpec.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTXCTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTXCTestCase.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTXCTestReporter.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SPTXCTestReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SPTXCTestReporter.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/Specta.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/SpectaUtility.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/XCTestCase+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestLog+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/XCTestLog+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestLog+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/XCTestLog+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestRun+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/XCTestRun+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/src/XCTestRun+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Pods/Specta/src/XCTestRun+Specta.m -------------------------------------------------------------------------------- /Example/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/Rakefile -------------------------------------------------------------------------------- /Example/script/generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/Example/script/generate-docs.sh -------------------------------------------------------------------------------- /IntentKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit.podspec -------------------------------------------------------------------------------- /IntentKit/Apps/1Password/1Password.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/1Password/1Password.plist -------------------------------------------------------------------------------- /IntentKit/Apps/1Password/1Password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/1Password/1Password.png -------------------------------------------------------------------------------- /IntentKit/Apps/1Password/1Password@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/1Password/1Password@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/1Password/1Password@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/1Password/1Password@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/1Password/1Password~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/1Password/1Password~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Chrome/Chrome.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Chrome/Chrome.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Chrome/Chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Chrome/Chrome.png -------------------------------------------------------------------------------- /IntentKit/Apps/Chrome/Chrome@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Chrome/Chrome@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Chrome/Chrome@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Chrome/Chrome@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Chrome/Chrome~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Chrome/Chrome~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Defaults/INKBrowserHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Defaults/INKBrowserHandler.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Defaults/INKFacebookHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Defaults/INKFacebookHandler.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Defaults/INKGPlusHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Defaults/INKGPlusHandler.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Defaults/INKMailHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Defaults/INKMailHandler.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Defaults/INKMapsHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Defaults/INKMapsHandler.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Defaults/INKTwitterHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Defaults/INKTwitterHandler.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Facebook/Facebook.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Facebook/Facebook.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Facebook/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Facebook/Facebook.png -------------------------------------------------------------------------------- /IntentKit/Apps/Facebook/Facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Facebook/Facebook@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Facebook/Facebook@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Facebook/Facebook@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Facebook/Facebook~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Facebook/Facebook~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Gmail/Gmail.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Gmail/Gmail.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Gmail/Gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Gmail/Gmail.png -------------------------------------------------------------------------------- /IntentKit/Apps/Gmail/Gmail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Gmail/Gmail@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Gmail/Gmail@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Gmail/Gmail@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Gmail/Gmail~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Gmail/Gmail~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google Maps/Google Maps.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google Maps/Google Maps.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Google Maps/Google Maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google Maps/Google Maps.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google Maps/Google Maps@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google Maps/Google Maps@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google Maps/Google Maps@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google Maps/Google Maps@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google Maps/Google Maps~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google Maps/Google Maps~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google+/Google+.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google+/Google+.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Google+/Google+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google+/Google+.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google+/Google+@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google+/Google+@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google+/Google+@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google+/Google+@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Google+/Google+~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Google+/Google+~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet.h -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet.m -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet.plist -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKMailSheet/INKMailSheet~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKMailSheet/INKMailSheet~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet.h -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet.m -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet.plist -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKTweetSheet/INKTweetSheet~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKTweetSheet/INKTweetSheet~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView.h -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView.m -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView.plist -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebViewController.h -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebViewController.m -------------------------------------------------------------------------------- /IntentKit/Apps/INKWebView/INKWebView~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/INKWebView/INKWebView~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/IntentKitBundle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/IntentKitBundle-Info.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Mail/Mail.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Mail/Mail.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Mail/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Mail/Mail.png -------------------------------------------------------------------------------- /IntentKit/Apps/Mail/Mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Mail/Mail@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Mail/Mail@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Mail/Mail@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Mail/Mail~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Mail/Mail~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Maps/Maps.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Maps/Maps.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Maps/Maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Maps/Maps.png -------------------------------------------------------------------------------- /IntentKit/Apps/Maps/Maps@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Maps/Maps@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Maps/Maps@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Maps/Maps@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Maps/Maps~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Maps/Maps~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Safari/Safari.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Safari/Safari.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Safari/Safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Safari/Safari.png -------------------------------------------------------------------------------- /IntentKit/Apps/Safari/Safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Safari/Safari@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Safari/Safari@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Safari/Safari@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Safari/Safari~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Safari/Safari~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Tweetbot/Tweetbot.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Tweetbot/Tweetbot.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Tweetbot/Tweetbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Tweetbot/Tweetbot.png -------------------------------------------------------------------------------- /IntentKit/Apps/Tweetbot/Tweetbot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Tweetbot/Tweetbot@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Tweetbot/Tweetbot@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Tweetbot/Tweetbot@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Tweetbot/Tweetbot~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Tweetbot/Tweetbot~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitter/Twitter.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitter/Twitter.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Twitter/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitter/Twitter.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitter/Twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitter/Twitter@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitter/Twitter@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitter/Twitter@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitter/Twitter~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitter/Twitter~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitterrific/Twitterrific.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitterrific/Twitterrific.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Twitterrific/Twitterrific.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitterrific/Twitterrific.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitterrific/Twitterrific@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitterrific/Twitterrific@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitterrific/Twitterrific@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitterrific/Twitterrific@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Twitterrific/Twitterrific~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Twitterrific/Twitterrific~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Waze/Waze.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Waze/Waze.plist -------------------------------------------------------------------------------- /IntentKit/Apps/Waze/Waze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Waze/Waze.png -------------------------------------------------------------------------------- /IntentKit/Apps/Waze/Waze@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Waze/Waze@2x.png -------------------------------------------------------------------------------- /IntentKit/Apps/Waze/Waze@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Waze/Waze@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Apps/Waze/Waze~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Apps/Waze/Waze~ipad.png -------------------------------------------------------------------------------- /IntentKit/Core/Helpers/NSString+Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/Helpers/NSString+Helpers.h -------------------------------------------------------------------------------- /IntentKit/Core/Helpers/NSString+Helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/Helpers/NSString+Helpers.m -------------------------------------------------------------------------------- /IntentKit/Core/INKActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivity.h -------------------------------------------------------------------------------- /IntentKit/Core/INKActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivity.m -------------------------------------------------------------------------------- /IntentKit/Core/INKActivityViewController/INKActivityCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivityViewController/INKActivityCell.h -------------------------------------------------------------------------------- /IntentKit/Core/INKActivityViewController/INKActivityCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivityViewController/INKActivityCell.m -------------------------------------------------------------------------------- /IntentKit/Core/INKActivityViewController/INKActivityPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivityViewController/INKActivityPresenter.h -------------------------------------------------------------------------------- /IntentKit/Core/INKActivityViewController/INKActivityPresenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivityViewController/INKActivityPresenter.m -------------------------------------------------------------------------------- /IntentKit/Core/INKActivityViewController/INKActivityViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivityViewController/INKActivityViewController.h -------------------------------------------------------------------------------- /IntentKit/Core/INKActivityViewController/INKActivityViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKActivityViewController/INKActivityViewController.m -------------------------------------------------------------------------------- /IntentKit/Core/INKAppIconView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKAppIconView.h -------------------------------------------------------------------------------- /IntentKit/Core/INKAppIconView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKAppIconView.m -------------------------------------------------------------------------------- /IntentKit/Core/INKApplicationList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKApplicationList.h -------------------------------------------------------------------------------- /IntentKit/Core/INKApplicationList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKApplicationList.m -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultToggleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultToggleView.h -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultToggleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultToggleView.m -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultsManager.h -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultsManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultsManager.m -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultsViewController/INKDefaultsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultsViewController/INKDefaultsCell.h -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultsViewController/INKDefaultsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultsViewController/INKDefaultsCell.m -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultsViewController/INKDefaultsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultsViewController/INKDefaultsViewController.h -------------------------------------------------------------------------------- /IntentKit/Core/INKDefaultsViewController/INKDefaultsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKDefaultsViewController/INKDefaultsViewController.m -------------------------------------------------------------------------------- /IntentKit/Core/INKHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKHandler.h -------------------------------------------------------------------------------- /IntentKit/Core/INKHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKHandler.m -------------------------------------------------------------------------------- /IntentKit/Core/INKLocalizedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKLocalizedString.h -------------------------------------------------------------------------------- /IntentKit/Core/INKLocalizedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKLocalizedString.m -------------------------------------------------------------------------------- /IntentKit/Core/INKOpenInActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKOpenInActivity.h -------------------------------------------------------------------------------- /IntentKit/Core/INKOpenInActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKOpenInActivity.m -------------------------------------------------------------------------------- /IntentKit/Core/INKPresentable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/INKPresentable.h -------------------------------------------------------------------------------- /IntentKit/Core/IntentKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/IntentKit.h -------------------------------------------------------------------------------- /IntentKit/Core/IntentKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Core/IntentKit.m -------------------------------------------------------------------------------- /IntentKit/Handlers/INKBrowserHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKBrowserHandler.h -------------------------------------------------------------------------------- /IntentKit/Handlers/INKBrowserHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKBrowserHandler.m -------------------------------------------------------------------------------- /IntentKit/Handlers/INKFacebookHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKFacebookHandler.h -------------------------------------------------------------------------------- /IntentKit/Handlers/INKFacebookHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKFacebookHandler.m -------------------------------------------------------------------------------- /IntentKit/Handlers/INKGPlusHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKGPlusHandler.h -------------------------------------------------------------------------------- /IntentKit/Handlers/INKGPlusHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKGPlusHandler.m -------------------------------------------------------------------------------- /IntentKit/Handlers/INKMailHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKMailHandler.h -------------------------------------------------------------------------------- /IntentKit/Handlers/INKMailHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKMailHandler.m -------------------------------------------------------------------------------- /IntentKit/Handlers/INKMapsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKMapsHandler.h -------------------------------------------------------------------------------- /IntentKit/Handlers/INKMapsHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKMapsHandler.m -------------------------------------------------------------------------------- /IntentKit/Handlers/INKTwitterHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKTwitterHandler.h -------------------------------------------------------------------------------- /IntentKit/Handlers/INKTwitterHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Handlers/INKTwitterHandler.m -------------------------------------------------------------------------------- /IntentKit/Images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/back.png -------------------------------------------------------------------------------- /IntentKit/Images/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/back@2x.png -------------------------------------------------------------------------------- /IntentKit/Images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/forward.png -------------------------------------------------------------------------------- /IntentKit/Images/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/forward@2x.png -------------------------------------------------------------------------------- /IntentKit/Images/iconBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconBorder.png -------------------------------------------------------------------------------- /IntentKit/Images/iconBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconBorder@2x.png -------------------------------------------------------------------------------- /IntentKit/Images/iconBorder@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconBorder@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Images/iconBorder~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconBorder~ipad.png -------------------------------------------------------------------------------- /IntentKit/Images/iconMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconMask.png -------------------------------------------------------------------------------- /IntentKit/Images/iconMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconMask@2x.png -------------------------------------------------------------------------------- /IntentKit/Images/iconMask@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconMask@2x~ipad.png -------------------------------------------------------------------------------- /IntentKit/Images/iconMask~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/iconMask~ipad.png -------------------------------------------------------------------------------- /IntentKit/Images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/share.png -------------------------------------------------------------------------------- /IntentKit/Images/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/Images/share@2x.png -------------------------------------------------------------------------------- /IntentKit/IntentKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/IntentKit-Info.plist -------------------------------------------------------------------------------- /IntentKit/IntentKit-Localizations.bundle/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IntentKit/IntentKit-Localizations.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/IntentKit-Localizations.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /IntentKit/IntentKit-Localizations.bundle/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /IntentKit/IntentKit-Localizations.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/IntentKit-Localizations.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /IntentKit/IntentKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/IntentKit/IntentKit-Prefix.pch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/README.md -------------------------------------------------------------------------------- /example-defaults.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/example-defaults.gif -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intentkit/IntentKit/HEAD/example.gif --------------------------------------------------------------------------------