├── .travis.yml ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Crashlytics │ ├── Crashlytics.framework │ │ ├── README │ │ └── submit │ ├── README.md │ ├── iOS │ │ └── Crashlytics.framework │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ ├── ANSCompatibility.h │ │ │ ├── Answers.h │ │ │ ├── CLSAttributes.h │ │ │ ├── CLSLogging.h │ │ │ ├── CLSReport.h │ │ │ ├── CLSStackFrame.h │ │ │ └── Crashlytics.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ ├── submit │ │ │ └── uploadDSYM │ └── submit ├── Ensembles │ ├── Framework │ │ ├── Resources │ │ │ └── CDEEventStoreModel.xcdatamodeld │ │ │ │ ├── .xccurrentversion │ │ │ │ ├── CDEEventStoreModel_0.xcdatamodel │ │ │ │ └── contents │ │ │ │ ├── CDEEventStoreModel_1.xcdatamodel │ │ │ │ └── contents │ │ │ │ └── CDEEventStoreModel_2.xcdatamodel │ │ │ │ └── contents │ │ └── Source │ │ │ ├── Baselines │ │ │ ├── CDEBaselineConsolidator.h │ │ │ ├── CDEBaselineConsolidator.m │ │ │ ├── CDERebaser.h │ │ │ └── CDERebaser.m │ │ │ ├── Cloud File Systems │ │ │ ├── CDEFileDownloadOperation.h │ │ │ ├── CDEFileDownloadOperation.m │ │ │ ├── CDEFileUploadOperation.h │ │ │ ├── CDEFileUploadOperation.m │ │ │ ├── CDEICloudFileSystem.h │ │ │ ├── CDEICloudFileSystem.m │ │ │ ├── CDELocalCloudFileSystem.h │ │ │ └── CDELocalCloudFileSystem.m │ │ │ ├── Cloud │ │ │ ├── CDECloudDirectory.h │ │ │ ├── CDECloudDirectory.m │ │ │ ├── CDECloudFile.h │ │ │ ├── CDECloudFile.m │ │ │ ├── CDECloudFileSystem.h │ │ │ ├── CDECloudManager.h │ │ │ ├── CDECloudManager.m │ │ │ ├── CDEEventFile.h │ │ │ └── CDEEventFile.m │ │ │ ├── Ensemble │ │ │ ├── CDEPersistentStoreEnsemble.h │ │ │ ├── CDEPersistentStoreEnsemble.m │ │ │ ├── CDEPersistentStoreImporter.h │ │ │ └── CDEPersistentStoreImporter.m │ │ │ ├── Events │ │ │ ├── CDEEventBuilder.h │ │ │ ├── CDEEventBuilder.m │ │ │ ├── CDEEventIntegrator.h │ │ │ ├── CDEEventIntegrator.m │ │ │ ├── CDEEventMigrator.h │ │ │ ├── CDEEventMigrator.m │ │ │ ├── CDEEventStore.h │ │ │ ├── CDEEventStore.m │ │ │ ├── CDEPropertyChangeValue.h │ │ │ ├── CDEPropertyChangeValue.m │ │ │ ├── CDESaveMonitor.h │ │ │ └── CDESaveMonitor.m │ │ │ ├── General │ │ │ ├── CDEAsynchronousOperation.h │ │ │ ├── CDEAsynchronousOperation.m │ │ │ ├── CDEAsynchronousTaskQueue.h │ │ │ ├── CDEAsynchronousTaskQueue.m │ │ │ ├── CDEAvailabilityMacros.h │ │ │ ├── CDEDefines.h │ │ │ ├── CDEDefines.m │ │ │ ├── CDEFoundationAdditions.h │ │ │ ├── CDEFoundationAdditions.m │ │ │ ├── Ensembles.h │ │ │ ├── NSFileCoordinator+CDEAdditions.h │ │ │ ├── NSFileCoordinator+CDEAdditions.m │ │ │ ├── NSManagedObjectModel+CDEAdditions.h │ │ │ ├── NSManagedObjectModel+CDEAdditions.m │ │ │ ├── NSMapTable+CDEAdditions.h │ │ │ └── NSMapTable+CDEAdditions.m │ │ │ ├── Model │ │ │ ├── CDEDataFile.h │ │ │ ├── CDEDataFile.m │ │ │ ├── CDEEventRevision.h │ │ │ ├── CDEEventRevision.m │ │ │ ├── CDEGlobalIdentifier.h │ │ │ ├── CDEGlobalIdentifier.m │ │ │ ├── CDEObjectChange.h │ │ │ ├── CDEObjectChange.m │ │ │ ├── CDEStoreModificationEvent.h │ │ │ └── CDEStoreModificationEvent.m │ │ │ └── Revisioning │ │ │ ├── CDERevision.h │ │ │ ├── CDERevision.m │ │ │ ├── CDERevisionManager.h │ │ │ ├── CDERevisionManager.m │ │ │ ├── CDERevisionSet.h │ │ │ └── CDERevisionSet.m │ ├── LICENCE.txt │ └── README.md ├── Expecta │ ├── Expecta │ │ ├── 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 │ │ ├── ExpectaObject.h │ │ ├── ExpectaObject.m │ │ ├── ExpectaSupport.h │ │ ├── ExpectaSupport.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+match.h │ │ │ ├── EXPMatchers+match.m │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+postNotification.m │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raise.m │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers+respondTo.m │ │ │ └── EXPMatchers.h │ │ ├── NSObject+Expecta.h │ │ ├── NSValue+Expecta.h │ │ └── NSValue+Expecta.m │ ├── LICENSE │ └── README.md ├── Fabric │ ├── Fabric.framework │ │ ├── README │ │ └── run │ ├── README.md │ ├── iOS │ │ └── Fabric.framework │ │ │ ├── Fabric │ │ │ ├── Headers │ │ │ ├── FABAttributes.h │ │ │ └── Fabric.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ └── uploadDSYM │ ├── run │ ├── upload-symbols │ └── uploadDSYM ├── Headers │ ├── Private │ │ ├── Ensembles │ │ │ ├── CDEAsynchronousOperation.h │ │ │ ├── CDEAsynchronousTaskQueue.h │ │ │ ├── CDEAvailabilityMacros.h │ │ │ ├── CDEBaselineConsolidator.h │ │ │ ├── CDECloudDirectory.h │ │ │ ├── CDECloudFile.h │ │ │ ├── CDECloudFileSystem.h │ │ │ ├── CDECloudManager.h │ │ │ ├── CDEDataFile.h │ │ │ ├── CDEDefines.h │ │ │ ├── CDEEventBuilder.h │ │ │ ├── CDEEventFile.h │ │ │ ├── CDEEventIntegrator.h │ │ │ ├── CDEEventMigrator.h │ │ │ ├── CDEEventRevision.h │ │ │ ├── CDEEventStore.h │ │ │ ├── CDEFileDownloadOperation.h │ │ │ ├── CDEFileUploadOperation.h │ │ │ ├── CDEFoundationAdditions.h │ │ │ ├── CDEGlobalIdentifier.h │ │ │ ├── CDEICloudFileSystem.h │ │ │ ├── CDELocalCloudFileSystem.h │ │ │ ├── CDEObjectChange.h │ │ │ ├── CDEPersistentStoreEnsemble.h │ │ │ ├── CDEPersistentStoreImporter.h │ │ │ ├── CDEPropertyChangeValue.h │ │ │ ├── CDERebaser.h │ │ │ ├── CDERevision.h │ │ │ ├── CDERevisionManager.h │ │ │ ├── CDERevisionSet.h │ │ │ ├── CDESaveMonitor.h │ │ │ ├── CDEStoreModificationEvent.h │ │ │ ├── Ensembles.h │ │ │ ├── NSFileCoordinator+CDEAdditions.h │ │ │ ├── NSManagedObjectModel+CDEAdditions.h │ │ │ └── NSMapTable+CDEAdditions.h │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPExpect.h │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaSupport.h │ │ │ ├── NSObject+Expecta.h │ │ │ └── NSValue+Expecta.h │ │ ├── LRMocky │ │ │ ├── LRAllowingInvocation.h │ │ │ ├── LRClassImposterizer.h │ │ │ ├── LRConsecutiveCallAction.h │ │ │ ├── LRDescribable.h │ │ │ ├── LRExpectation.h │ │ │ ├── LRExpectationAction.h │ │ │ ├── LRExpectationBuilder.h │ │ │ ├── LRExpectationCardinality.h │ │ │ ├── LRExpectationMessage.h │ │ │ ├── LRHamcrestSupport.h │ │ │ ├── LRImposter.h │ │ │ ├── LRImposterizer.h │ │ │ ├── LRInvocationComparitor.h │ │ │ ├── LRInvocationExpectation.h │ │ │ ├── LRMockObject.h │ │ │ ├── LRMockery.h │ │ │ ├── LRMocky.h │ │ │ ├── LRMockyState.h │ │ │ ├── LRMockyStateMachine.h │ │ │ ├── LRMockyStateTransitionAction.h │ │ │ ├── LRMockyStates.h │ │ │ ├── LRMockySugar.h │ │ │ ├── LRMultipleAction.h │ │ │ ├── LRNotificationExpectation.h │ │ │ ├── LRObjectImposterizer.h │ │ │ ├── LRPerformBlockAction.h │ │ │ ├── LRPerformBlockArgumentAction.h │ │ │ ├── LRProtocolImposterizer.h │ │ │ ├── LRReturnValueAction.h │ │ │ ├── LRTestCase.h │ │ │ ├── LRThrowExceptionAction.h │ │ │ ├── LRUnexpectedInvocation.h │ │ │ ├── NSException_SenTestFailure.h │ │ │ ├── NSInvocation+LRAdditions.h │ │ │ └── NSInvocation+OCMAdditions.h │ │ ├── Mixpanel │ │ │ ├── MPABTestDesignerChangeRequestMessage.h │ │ │ ├── MPABTestDesignerChangeResponseMessage.h │ │ │ ├── MPABTestDesignerClearRequestMessage.h │ │ │ ├── MPABTestDesignerClearResponseMessage.h │ │ │ ├── MPABTestDesignerConnection.h │ │ │ ├── MPABTestDesignerDeviceInfoRequestMessage.h │ │ │ ├── MPABTestDesignerDeviceInfoResponseMessage.h │ │ │ ├── MPABTestDesignerDisconnectMessage.h │ │ │ ├── MPABTestDesignerMessage.h │ │ │ ├── MPABTestDesignerSnapshotRequestMessage.h │ │ │ ├── MPABTestDesignerSnapshotResponseMessage.h │ │ │ ├── MPABTestDesignerTweakRequestMessage.h │ │ │ ├── MPABTestDesignerTweakResponseMessage.h │ │ │ ├── MPAbstractABTestDesignerMessage.h │ │ │ ├── MPApplicationStateSerializer.h │ │ │ ├── MPClassDescription.h │ │ │ ├── MPDesignerEventBindingMessage.h │ │ │ ├── MPDesignerSessionCollection.h │ │ │ ├── MPEnumDescription.h │ │ │ ├── MPEventBinding.h │ │ │ ├── MPFoundation.h │ │ │ ├── MPLogger.h │ │ │ ├── MPNotification.h │ │ │ ├── MPNotificationViewController.h │ │ │ ├── MPObjectIdentifierProvider.h │ │ │ ├── MPObjectIdentityProvider.h │ │ │ ├── MPObjectSelector.h │ │ │ ├── MPObjectSerializer.h │ │ │ ├── MPObjectSerializerConfig.h │ │ │ ├── MPObjectSerializerContext.h │ │ │ ├── MPPropertyDescription.h │ │ │ ├── MPSequenceGenerator.h │ │ │ ├── MPSurvey.h │ │ │ ├── MPSurveyNavigationController.h │ │ │ ├── MPSurveyQuestion.h │ │ │ ├── MPSurveyQuestionViewController.h │ │ │ ├── MPSwizzler.h │ │ │ ├── MPTweak.h │ │ │ ├── MPTweakInline.h │ │ │ ├── MPTweakInlineInternal.h │ │ │ ├── MPTweakStore.h │ │ │ ├── MPTypeDescription.h │ │ │ ├── MPUIControlBinding.h │ │ │ ├── MPUITableViewBinding.h │ │ │ ├── MPValueTransformers.h │ │ │ ├── MPVariant.h │ │ │ ├── MPWebSocket.h │ │ │ ├── Mixpanel.h │ │ │ ├── MixpanelExceptionHandler.h │ │ │ ├── NSData+MPBase64.h │ │ │ ├── NSInvocation+MPHelpers.h │ │ │ ├── UIColor+MPColor.h │ │ │ ├── UIImage+MPAverageColor.h │ │ │ ├── UIImage+MPImageEffects.h │ │ │ ├── UIView+MPHelpers.h │ │ │ └── _MPTweakBindObserver.h │ │ ├── OCHamcrest │ │ │ ├── HCAllOf.h │ │ │ ├── HCAnyOf.h │ │ │ ├── HCAssertThat.h │ │ │ ├── HCBaseDescription.h │ │ │ ├── HCBaseMatcher.h │ │ │ ├── HCClassMatcher.h │ │ │ ├── HCCollectMatchers.h │ │ │ ├── HCConformsToProtocol.h │ │ │ ├── HCDescribedAs.h │ │ │ ├── HCDescription.h │ │ │ ├── HCGenericTestFailureHandler.h │ │ │ ├── HCHasCount.h │ │ │ ├── HCHasDescription.h │ │ │ ├── HCHasProperty.h │ │ │ ├── HCInvocationMatcher.h │ │ │ ├── HCIs.h │ │ │ ├── HCIsAnything.h │ │ │ ├── HCIsCloseTo.h │ │ │ ├── HCIsCollectionContaining.h │ │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ │ ├── HCIsCollectionContainingInOrder.h │ │ │ ├── HCIsCollectionOnlyContaining.h │ │ │ ├── HCIsDictionaryContaining.h │ │ │ ├── HCIsDictionaryContainingEntries.h │ │ │ ├── HCIsDictionaryContainingKey.h │ │ │ ├── HCIsDictionaryContainingValue.h │ │ │ ├── HCIsEmptyCollection.h │ │ │ ├── HCIsEqual.h │ │ │ ├── HCIsEqualIgnoringCase.h │ │ │ ├── HCIsEqualIgnoringWhiteSpace.h │ │ │ ├── HCIsEqualToNumber.h │ │ │ ├── HCIsIn.h │ │ │ ├── HCIsInstanceOf.h │ │ │ ├── HCIsNil.h │ │ │ ├── HCIsNot.h │ │ │ ├── HCIsSame.h │ │ │ ├── HCIsTypeOf.h │ │ │ ├── HCMatcher.h │ │ │ ├── HCNumberAssert.h │ │ │ ├── HCOrderingComparison.h │ │ │ ├── HCRequireNonNilObject.h │ │ │ ├── HCSelfDescribing.h │ │ │ ├── HCSenTestFailureHandler.h │ │ │ ├── HCStringContains.h │ │ │ ├── HCStringContainsInOrder.h │ │ │ ├── HCStringDescription.h │ │ │ ├── HCStringEndsWith.h │ │ │ ├── HCStringStartsWith.h │ │ │ ├── HCSubstringMatcher.h │ │ │ ├── HCTestFailure.h │ │ │ ├── HCTestFailureHandler.h │ │ │ ├── HCTestFailureHandlerChain.h │ │ │ ├── HCWrapInMatcher.h │ │ │ ├── HCXCTestFailureHandler.h │ │ │ └── OCHamcrest.h │ │ ├── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCMockRecorder.h │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCPartialMockObject.h │ │ │ ├── OCPartialMockRecorder.h │ │ │ └── OCProtocolMockObject.h │ │ ├── OCMockito │ │ │ ├── MKTArgumentCaptor.h │ │ │ ├── MKTArgumentGetter.h │ │ │ ├── MKTArgumentGetterChain.h │ │ │ ├── MKTAtLeastTimes.h │ │ │ ├── MKTBaseMockObject.h │ │ │ ├── MKTBlockArgumentGetter.h │ │ │ ├── MKTBoolArgumentGetter.h │ │ │ ├── MKTBoolReturnSetter.h │ │ │ ├── MKTCapturingMatcher.h │ │ │ ├── MKTCharArgumentGetter.h │ │ │ ├── MKTCharReturnSetter.h │ │ │ ├── MKTClassArgumentGetter.h │ │ │ ├── MKTClassObjectMock.h │ │ │ ├── MKTClassReturnSetter.h │ │ │ ├── MKTDoubleArgumentGetter.h │ │ │ ├── MKTDoubleReturnSetter.h │ │ │ ├── MKTExactTimes.h │ │ │ ├── MKTFloatArgumentGetter.h │ │ │ ├── MKTFloatReturnSetter.h │ │ │ ├── MKTIntArgumentGetter.h │ │ │ ├── MKTIntReturnSetter.h │ │ │ ├── MKTInvocationContainer.h │ │ │ ├── MKTInvocationMatcher.h │ │ │ ├── MKTLongArgumentGetter.h │ │ │ ├── MKTLongLongArgumentGetter.h │ │ │ ├── MKTLongLongReturnSetter.h │ │ │ ├── MKTLongReturnSetter.h │ │ │ ├── MKTMockingProgress.h │ │ │ ├── MKTMockitoCore.h │ │ │ ├── MKTObjectAndProtocolMock.h │ │ │ ├── MKTObjectArgumentGetter.h │ │ │ ├── MKTObjectMock.h │ │ │ ├── MKTObjectReturnSetter.h │ │ │ ├── MKTOngoingStubbing.h │ │ │ ├── MKTPointerArgumentGetter.h │ │ │ ├── MKTPrimitiveArgumentMatching.h │ │ │ ├── MKTProtocolMock.h │ │ │ ├── MKTReturnValueSetter.h │ │ │ ├── MKTReturnValueSetterChain.h │ │ │ ├── MKTSelectorArgumentGetter.h │ │ │ ├── MKTShortArgumentGetter.h │ │ │ ├── MKTShortReturnSetter.h │ │ │ ├── MKTStructArgumentGetter.h │ │ │ ├── MKTStubbedInvocationMatcher.h │ │ │ ├── MKTTestLocation.h │ │ │ ├── MKTUnsignedCharArgumentGetter.h │ │ │ ├── MKTUnsignedCharReturnSetter.h │ │ │ ├── MKTUnsignedIntArgumentGetter.h │ │ │ ├── MKTUnsignedIntReturnSetter.h │ │ │ ├── MKTUnsignedLongArgumentGetter.h │ │ │ ├── MKTUnsignedLongLongArgumentGetter.h │ │ │ ├── MKTUnsignedLongLongReturnSetter.h │ │ │ ├── MKTUnsignedLongReturnSetter.h │ │ │ ├── MKTUnsignedShortArgumentGetter.h │ │ │ ├── MKTUnsignedShortReturnSetter.h │ │ │ ├── MKTVerificationData.h │ │ │ ├── MKTVerificationMode.h │ │ │ ├── NSInvocation+OCMockito.h │ │ │ └── OCMockito.h │ │ ├── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ │ ├── Reachability │ │ │ └── Reachability.h │ │ ├── SGReachability │ │ │ └── SGReachabilityController.h │ │ ├── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ └── SVProgressHUD.h │ │ ├── Specta │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTExample.h │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSpec.h │ │ │ ├── SPTTestSuite.h │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── XCTest+Private.h │ │ │ └── XCTestCase+Specta.h │ │ └── TTTAttributedLabel │ │ │ └── TTTAttributedLabel.h │ └── Public │ │ ├── Crashlytics │ │ └── Crashlytics │ │ │ ├── ANSCompatibility.h │ │ │ ├── Answers.h │ │ │ ├── CLSAttributes.h │ │ │ ├── CLSLogging.h │ │ │ ├── CLSReport.h │ │ │ ├── CLSStackFrame.h │ │ │ └── Crashlytics.h │ │ └── Fabric │ │ └── Fabric │ │ ├── FABAttributes.h │ │ └── Fabric.h ├── LRMocky │ ├── Classes │ │ ├── LRDescribable.h │ │ ├── LRExpectationMessage.h │ │ ├── LRExpectationMessage.m │ │ ├── LRInvocationComparitor.h │ │ ├── LRInvocationComparitor.m │ │ ├── LRMocky.h │ │ └── LRMocky │ │ │ ├── LRAllowingInvocation.h │ │ │ ├── LRAllowingInvocation.m │ │ │ ├── LRClassImposterizer.h │ │ │ ├── LRClassImposterizer.m │ │ │ ├── LRConsecutiveCallAction.h │ │ │ ├── LRConsecutiveCallAction.m │ │ │ ├── LRExpectation.h │ │ │ ├── LRExpectationAction.h │ │ │ ├── LRExpectationBuilder.h │ │ │ ├── LRExpectationBuilder.m │ │ │ ├── LRExpectationCardinality.h │ │ │ ├── LRExpectationCardinality.m │ │ │ ├── LRHamcrestSupport.h │ │ │ ├── LRImposter.h │ │ │ ├── LRImposter.m │ │ │ ├── LRImposterizer.h │ │ │ ├── LRImposterizer.m │ │ │ ├── LRInvocationExpectation.h │ │ │ ├── LRInvocationExpectation.m │ │ │ ├── LRMockObject.h │ │ │ ├── LRMockObject.m │ │ │ ├── LRMockery.h │ │ │ ├── LRMockery.m │ │ │ ├── LRMockyState.h │ │ │ ├── LRMockyState.m │ │ │ ├── LRMockyStateMachine.h │ │ │ ├── LRMockyStateMachine.m │ │ │ ├── LRMockyStateTransitionAction.h │ │ │ ├── LRMockyStateTransitionAction.m │ │ │ ├── LRMockyStates.h │ │ │ ├── LRMockyStates.m │ │ │ ├── LRMockySugar.h │ │ │ ├── LRMultipleAction.h │ │ │ ├── LRMultipleAction.m │ │ │ ├── LRNotificationExpectation.h │ │ │ ├── LRNotificationExpectation.m │ │ │ ├── LRObjectImposterizer.h │ │ │ ├── LRObjectImposterizer.m │ │ │ ├── LRPerformBlockAction.h │ │ │ ├── LRPerformBlockAction.m │ │ │ ├── LRPerformBlockArgumentAction.h │ │ │ ├── LRPerformBlockArgumentAction.m │ │ │ ├── LRProtocolImposterizer.h │ │ │ ├── LRProtocolImposterizer.m │ │ │ ├── LRReturnValueAction.h │ │ │ ├── LRReturnValueAction.m │ │ │ ├── LRTestCase.h │ │ │ ├── LRTestCase.m │ │ │ ├── LRThrowExceptionAction.h │ │ │ ├── LRThrowExceptionAction.m │ │ │ ├── LRUnexpectedInvocation.h │ │ │ └── LRUnexpectedInvocation.m │ ├── License.txt │ ├── README.markdown │ └── Vendor │ │ ├── NSException_SenTestFailure.h │ │ ├── NSInvocation+LRAdditions.h │ │ ├── NSInvocation+LRAdditions.m │ │ ├── NSInvocation+OCMAdditions.h │ │ └── NSInvocation+OCMAdditions.m ├── Manifest.lock ├── Mixpanel │ ├── LICENSE │ ├── Mixpanel │ │ ├── MPABTestDesignerChangeRequestMessage.h │ │ ├── MPABTestDesignerChangeRequestMessage.m │ │ ├── MPABTestDesignerChangeResponseMessage.h │ │ ├── MPABTestDesignerChangeResponseMessage.m │ │ ├── MPABTestDesignerClearRequestMessage.h │ │ ├── MPABTestDesignerClearRequestMessage.m │ │ ├── MPABTestDesignerClearResponseMessage.h │ │ ├── MPABTestDesignerClearResponseMessage.m │ │ ├── MPABTestDesignerConnection.h │ │ ├── MPABTestDesignerConnection.m │ │ ├── MPABTestDesignerDeviceInfoRequestMessage.h │ │ ├── MPABTestDesignerDeviceInfoRequestMessage.m │ │ ├── MPABTestDesignerDeviceInfoResponseMessage.h │ │ ├── MPABTestDesignerDeviceInfoResponseMessage.m │ │ ├── MPABTestDesignerDisconnectMessage.h │ │ ├── MPABTestDesignerDisconnectMessage.m │ │ ├── MPABTestDesignerMessage.h │ │ ├── MPABTestDesignerSnapshotRequestMessage.h │ │ ├── MPABTestDesignerSnapshotRequestMessage.m │ │ ├── MPABTestDesignerSnapshotResponseMessage.h │ │ ├── MPABTestDesignerSnapshotResponseMessage.m │ │ ├── MPABTestDesignerTweakRequestMessage.h │ │ ├── MPABTestDesignerTweakRequestMessage.m │ │ ├── MPABTestDesignerTweakResponseMessage.h │ │ ├── MPABTestDesignerTweakResponseMessage.m │ │ ├── MPAbstractABTestDesignerMessage.h │ │ ├── MPAbstractABTestDesignerMessage.m │ │ ├── MPApplicationStateSerializer.h │ │ ├── MPApplicationStateSerializer.m │ │ ├── MPBOOLToNSNumberValueTransformer.m │ │ ├── MPCATransform3DToNSDictionaryValueTransformer.m │ │ ├── MPCGAffineTransformToNSDictionaryValueTransformer.m │ │ ├── MPCGColorRefToNSStringValueTransformer.m │ │ ├── MPCGPointToNSDictionaryValueTransformer.m │ │ ├── MPCGRectToNSDictionaryValueTransformer.m │ │ ├── MPCGSizeToNSDictionaryValueTransformer.m │ │ ├── MPClassDescription.h │ │ ├── MPClassDescription.m │ │ ├── MPDesignerEventBindingMessage.h │ │ ├── MPDesignerEventBindingRequestMesssage.m │ │ ├── MPDesignerEventBindingResponseMesssage.m │ │ ├── MPDesignerSessionCollection.h │ │ ├── MPDesignerTrackMessage.m │ │ ├── MPEnumDescription.h │ │ ├── MPEnumDescription.m │ │ ├── MPEventBinding.h │ │ ├── MPEventBinding.m │ │ ├── MPFoundation.h │ │ ├── MPLogger.h │ │ ├── MPNSAttributedStringToNSDictionaryValueTransformer.m │ │ ├── MPNSNumberToCGFloatValueTransformer.m │ │ ├── MPNotification.h │ │ ├── MPNotification.m │ │ ├── MPNotification.storyboard │ │ ├── MPNotificationViewController.h │ │ ├── MPNotificationViewController.m │ │ ├── MPObjectIdentifierProvider.h │ │ ├── MPObjectIdentityProvider.h │ │ ├── MPObjectIdentityProvider.m │ │ ├── MPObjectSelector.h │ │ ├── MPObjectSelector.m │ │ ├── MPObjectSerializer.h │ │ ├── MPObjectSerializer.m │ │ ├── MPObjectSerializerConfig.h │ │ ├── MPObjectSerializerConfig.m │ │ ├── MPObjectSerializerContext.h │ │ ├── MPObjectSerializerContext.m │ │ ├── MPPassThroughValueTransformer.m │ │ ├── MPPropertyDescription.h │ │ ├── MPPropertyDescription.m │ │ ├── MPSequenceGenerator.h │ │ ├── MPSequenceGenerator.m │ │ ├── MPSurvey.h │ │ ├── MPSurvey.m │ │ ├── MPSurvey.storyboard │ │ ├── MPSurveyNavigationController.h │ │ ├── MPSurveyNavigationController.m │ │ ├── MPSurveyQuestion.h │ │ ├── MPSurveyQuestion.m │ │ ├── MPSurveyQuestionViewController.h │ │ ├── MPSurveyQuestionViewController.m │ │ ├── MPSwizzler.h │ │ ├── MPSwizzler.m │ │ ├── MPTweak.h │ │ ├── MPTweak.m │ │ ├── MPTweakInline.h │ │ ├── MPTweakInline.m │ │ ├── MPTweakInlineInternal.h │ │ ├── MPTweakStore.h │ │ ├── MPTweakStore.m │ │ ├── MPTypeDescription.h │ │ ├── MPTypeDescription.m │ │ ├── MPUIColorToNSStringValueTransformer.m │ │ ├── MPUIControlBinding.h │ │ ├── MPUIControlBinding.m │ │ ├── MPUIEdgeInsetsToNSDictionaryValueTransformer.m │ │ ├── MPUIFontToNSDictionaryValueTransformer.m │ │ ├── MPUIImageToNSDictionaryValueTransformer.m │ │ ├── MPUITableViewBinding.h │ │ ├── MPUITableViewBinding.m │ │ ├── MPValueTransformers.h │ │ ├── MPVariant.h │ │ ├── MPVariant.m │ │ ├── MPWebSocket.h │ │ ├── MPWebSocket.m │ │ ├── Media.xcassets │ │ │ ├── MPArrowLeft.imageset │ │ │ │ ├── MPArrowLeft.png │ │ │ │ └── MPArrowLeft@2x.png │ │ │ ├── MPArrowRight.imageset │ │ │ │ ├── MPArrowRight.png │ │ │ │ └── MPArrowRight@2x.png │ │ │ ├── MPCheckmark.imageset │ │ │ │ ├── MPCheckmark.png │ │ │ │ └── MPCheckmark@2x.png │ │ │ ├── MPCloseBtn.imageset │ │ │ │ ├── MPCloseBtn.png │ │ │ │ └── MPCloseBtn@2x.png │ │ │ ├── MPDismissKeyboard.imageset │ │ │ │ ├── MPDismissKeyboard.png │ │ │ │ └── MPDismissKeyboard@2x.png │ │ │ └── MPLogo.imageset │ │ │ │ ├── MPLogo.png │ │ │ │ └── MPLogo@2x.png │ │ ├── Mixpanel.h │ │ ├── Mixpanel.m │ │ ├── MixpanelExceptionHandler.h │ │ ├── MixpanelExceptionHandler.m │ │ ├── NSData+MPBase64.h │ │ ├── NSData+MPBase64.m │ │ ├── NSInvocation+MPHelpers.h │ │ ├── NSInvocation+MPHelpers.m │ │ ├── UIColor+MPColor.h │ │ ├── UIColor+MPColor.m │ │ ├── UIImage+MPAverageColor.h │ │ ├── UIImage+MPAverageColor.m │ │ ├── UIImage+MPImageEffects.h │ │ ├── UIImage+MPImageEffects.m │ │ ├── UIView+MPHelpers.h │ │ ├── UIView+MPHelpers.m │ │ ├── _MPTweakBindObserver.h │ │ └── _MPTweakBindObserver.m │ └── README.md ├── OCHamcrest │ ├── LICENSE.txt │ ├── README.md │ └── Source │ │ ├── Core │ │ ├── HCAssertThat.h │ │ ├── HCAssertThat.m │ │ ├── HCBaseDescription.h │ │ ├── HCBaseDescription.m │ │ ├── HCBaseMatcher.h │ │ ├── HCBaseMatcher.m │ │ ├── HCDescription.h │ │ ├── HCGenericTestFailureHandler.h │ │ ├── HCGenericTestFailureHandler.m │ │ ├── HCMatcher.h │ │ ├── HCSelfDescribing.h │ │ ├── HCSenTestFailureHandler.h │ │ ├── HCSenTestFailureHandler.m │ │ ├── HCStringDescription.h │ │ ├── HCStringDescription.m │ │ ├── HCTestFailure.h │ │ ├── HCTestFailure.m │ │ ├── HCTestFailureHandler.h │ │ ├── HCTestFailureHandlerChain.h │ │ ├── HCTestFailureHandlerChain.m │ │ ├── HCXCTestFailureHandler.h │ │ ├── HCXCTestFailureHandler.m │ │ └── Helpers │ │ │ ├── HCCollectMatchers.h │ │ │ ├── HCCollectMatchers.m │ │ │ ├── HCInvocationMatcher.h │ │ │ ├── HCInvocationMatcher.m │ │ │ ├── HCRequireNonNilObject.h │ │ │ ├── HCRequireNonNilObject.m │ │ │ ├── HCWrapInMatcher.h │ │ │ └── HCWrapInMatcher.m │ │ ├── Library │ │ ├── Collection │ │ │ ├── HCHasCount.h │ │ │ ├── HCHasCount.m │ │ │ ├── HCIsCollectionContaining.h │ │ │ ├── HCIsCollectionContaining.m │ │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ │ ├── HCIsCollectionContainingInAnyOrder.m │ │ │ ├── HCIsCollectionContainingInOrder.h │ │ │ ├── HCIsCollectionContainingInOrder.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 │ │ │ ├── HCNumberAssert.h │ │ │ ├── HCNumberAssert.m │ │ │ ├── HCOrderingComparison.h │ │ │ └── HCOrderingComparison.m │ │ ├── Object │ │ │ ├── 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 │ │ └── 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 ├── OCMock │ ├── README.md │ └── Source │ │ └── OCMock │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSInvocation+OCMAdditions.m │ │ ├── NSMethodSignature+OCMAdditions.h │ │ ├── NSMethodSignature+OCMAdditions.m │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ ├── NSObject+OCMAdditions.h │ │ ├── NSObject+OCMAdditions.m │ │ ├── OCClassMockObject.h │ │ ├── OCClassMockObject.m │ │ ├── OCMArg.h │ │ ├── OCMArg.m │ │ ├── OCMBlockCaller.h │ │ ├── OCMBlockCaller.m │ │ ├── OCMBoxedReturnValueProvider.h │ │ ├── OCMBoxedReturnValueProvider.m │ │ ├── OCMConstraint.h │ │ ├── OCMConstraint.m │ │ ├── OCMExceptionReturnValueProvider.h │ │ ├── OCMExceptionReturnValueProvider.m │ │ ├── OCMIndirectReturnValueProvider.h │ │ ├── OCMIndirectReturnValueProvider.m │ │ ├── OCMNotificationPoster.h │ │ ├── OCMNotificationPoster.m │ │ ├── OCMObserverRecorder.h │ │ ├── OCMObserverRecorder.m │ │ ├── OCMPassByRefSetter.h │ │ ├── OCMPassByRefSetter.m │ │ ├── OCMRealObjectForwarder.h │ │ ├── OCMRealObjectForwarder.m │ │ ├── OCMReturnValueProvider.h │ │ ├── OCMReturnValueProvider.m │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ ├── OCMockObject.m │ │ ├── OCMockRecorder.h │ │ ├── OCMockRecorder.m │ │ ├── OCObserverMockObject.h │ │ ├── OCObserverMockObject.m │ │ ├── OCPartialMockObject.h │ │ ├── OCPartialMockObject.m │ │ ├── OCPartialMockRecorder.h │ │ ├── OCPartialMockRecorder.m │ │ ├── OCProtocolMockObject.h │ │ └── OCProtocolMockObject.m ├── OCMockito │ ├── LICENSE.txt │ ├── README.md │ └── Source │ │ └── OCMockito │ │ ├── Helpers │ │ ├── ArgumentGetters │ │ │ ├── MKTArgumentGetter.h │ │ │ ├── MKTArgumentGetter.m │ │ │ ├── MKTArgumentGetterChain.h │ │ │ ├── MKTArgumentGetterChain.m │ │ │ ├── MKTBlockArgumentGetter.h │ │ │ ├── MKTBlockArgumentGetter.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 │ │ │ ├── MKTUnsignedCharReturnSetter.h │ │ │ ├── MKTUnsignedCharReturnSetter.m │ │ │ ├── MKTUnsignedIntReturnSetter.h │ │ │ ├── MKTUnsignedIntReturnSetter.m │ │ │ ├── MKTUnsignedLongLongReturnSetter.h │ │ │ ├── MKTUnsignedLongLongReturnSetter.m │ │ │ ├── MKTUnsignedLongReturnSetter.h │ │ │ ├── MKTUnsignedLongReturnSetter.m │ │ │ ├── MKTUnsignedShortReturnSetter.h │ │ │ └── MKTUnsignedShortReturnSetter.m │ │ ├── MKTArgumentCaptor.h │ │ ├── MKTArgumentCaptor.m │ │ ├── MKTAtLeastTimes.h │ │ ├── MKTAtLeastTimes.m │ │ ├── MKTBaseMockObject.h │ │ ├── MKTBaseMockObject.m │ │ ├── MKTCapturingMatcher.h │ │ ├── MKTCapturingMatcher.m │ │ ├── MKTClassObjectMock.h │ │ ├── MKTClassObjectMock.m │ │ ├── MKTExactTimes.h │ │ ├── MKTExactTimes.m │ │ ├── MKTInvocationContainer.h │ │ ├── MKTInvocationContainer.m │ │ ├── MKTInvocationMatcher.h │ │ ├── MKTInvocationMatcher.m │ │ ├── MKTMockingProgress.h │ │ ├── MKTMockingProgress.m │ │ ├── MKTMockitoCore.h │ │ ├── MKTMockitoCore.m │ │ ├── MKTObjectAndProtocolMock.h │ │ ├── MKTObjectAndProtocolMock.m │ │ ├── MKTObjectMock.h │ │ ├── MKTObjectMock.m │ │ ├── MKTOngoingStubbing.h │ │ ├── MKTOngoingStubbing.m │ │ ├── MKTPrimitiveArgumentMatching.h │ │ ├── MKTProtocolMock.h │ │ ├── MKTProtocolMock.m │ │ ├── MKTStubbedInvocationMatcher.h │ │ ├── MKTStubbedInvocationMatcher.m │ │ ├── MKTTestLocation.h │ │ ├── MKTTestLocation.m │ │ ├── MKTVerificationData.h │ │ ├── MKTVerificationData.m │ │ ├── MKTVerificationMode.h │ │ ├── NSInvocation+OCMockito.h │ │ ├── NSInvocation+OCMockito.m │ │ ├── OCMockito.h │ │ └── OCMockito.m ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── root.xcuserdatad │ │ └── xcschemes │ │ │ ├── Bolts.xcscheme │ │ │ ├── Ensembles.xcscheme │ │ │ ├── Expecta.xcscheme │ │ │ ├── FBSDKCoreKit.xcscheme │ │ │ ├── FBSDKLoginKit.xcscheme │ │ │ ├── FBSDKShareKit.xcscheme │ │ │ ├── LRMocky.xcscheme │ │ │ ├── Mixpanel.xcscheme │ │ │ ├── OCHamcrest.xcscheme │ │ │ ├── OCMock.xcscheme │ │ │ ├── OCMockito.xcscheme │ │ │ ├── Pods-Tinylog.xcscheme │ │ │ ├── Pods-TinylogTests.xcscheme │ │ │ ├── PureLayout.xcscheme │ │ │ ├── Reachability.xcscheme │ │ │ ├── SGBackgroundView.xcscheme │ │ │ ├── SGReachability.xcscheme │ │ │ ├── SVProgressHUD.xcscheme │ │ │ ├── Specta.xcscheme │ │ │ ├── TTTAttributedLabel.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── spirosgerokostas.xcuserdatad │ │ └── xcschemes │ │ ├── Ensembles.xcscheme │ │ ├── Expecta.xcscheme │ │ ├── LRMocky.xcscheme │ │ ├── Mixpanel.xcscheme │ │ ├── OCHamcrest.xcscheme │ │ ├── OCMock.xcscheme │ │ ├── OCMockito.xcscheme │ │ ├── Pods-Tinylog.xcscheme │ │ ├── Pods-TinylogTests.xcscheme │ │ ├── PureLayout.xcscheme │ │ ├── Reachability.xcscheme │ │ ├── SGBackgroundView.xcscheme │ │ ├── SGReachability.xcscheme │ │ ├── SVProgressHUD.xcscheme │ │ ├── Specta.xcscheme │ │ ├── TTTAttributedLabel.xcscheme │ │ └── xcschememanagement.plist ├── PureLayout │ ├── LICENSE │ ├── PureLayout │ │ └── PureLayout │ │ │ ├── ALView+PureLayout.h │ │ │ ├── ALView+PureLayout.m │ │ │ ├── NSArray+PureLayout.h │ │ │ ├── NSArray+PureLayout.m │ │ │ ├── NSLayoutConstraint+PureLayout.h │ │ │ ├── NSLayoutConstraint+PureLayout.m │ │ │ ├── PureLayout+Internal.h │ │ │ ├── PureLayout.h │ │ │ └── PureLayoutDefines.h │ └── README.md ├── Reachability │ ├── LICENCE.txt │ ├── README.md │ ├── Reachability.h │ └── Reachability.m ├── SGBackgroundView │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ └── SGBackgroundView.swift │ └── README.md ├── SGReachability │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ ├── SGReachabilityController.h │ │ │ └── SGReachabilityController.m │ └── README.md ├── SVProgressHUD │ ├── LICENSE.txt │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ └── SVProgressHUD.m ├── Specta │ ├── LICENSE │ ├── README.md │ └── Specta │ │ └── Specta │ │ ├── SPTCallSite.h │ │ ├── SPTCallSite.m │ │ ├── SPTCompiledExample.h │ │ ├── SPTCompiledExample.m │ │ ├── SPTExample.h │ │ ├── SPTExample.m │ │ ├── SPTExampleGroup.h │ │ ├── SPTExampleGroup.m │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ ├── SPTGlobalBeforeAfterEach.h │ │ ├── SPTSharedExampleGroups.h │ │ ├── SPTSharedExampleGroups.m │ │ ├── SPTSpec.h │ │ ├── SPTSpec.m │ │ ├── SPTTestSuite.h │ │ ├── SPTTestSuite.m │ │ ├── Specta.h │ │ ├── SpectaDSL.h │ │ ├── SpectaDSL.m │ │ ├── SpectaTypes.h │ │ ├── SpectaUtility.h │ │ ├── SpectaUtility.m │ │ ├── XCTest+Private.h │ │ ├── XCTestCase+Specta.h │ │ └── XCTestCase+Specta.m ├── TTTAttributedLabel │ ├── LICENSE │ ├── README.md │ └── TTTAttributedLabel │ │ ├── TTTAttributedLabel.h │ │ └── TTTAttributedLabel.m └── Target Support Files │ ├── Ensembles │ ├── Ensembles-dummy.m │ ├── Ensembles-prefix.pch │ ├── Ensembles-umbrella.h │ ├── Ensembles.modulemap │ ├── Ensembles.xcconfig │ └── Info.plist │ ├── Expecta │ ├── Expecta-dummy.m │ ├── Expecta-prefix.pch │ ├── Expecta-umbrella.h │ ├── Expecta.modulemap │ ├── Expecta.xcconfig │ └── Info.plist │ ├── LRMocky │ ├── Info.plist │ ├── LRMocky-dummy.m │ ├── LRMocky-prefix.pch │ ├── LRMocky-umbrella.h │ ├── LRMocky.modulemap │ └── LRMocky.xcconfig │ ├── Mixpanel │ ├── Info.plist │ ├── Mixpanel-dummy.m │ ├── Mixpanel-prefix.pch │ ├── Mixpanel-umbrella.h │ ├── Mixpanel.modulemap │ └── Mixpanel.xcconfig │ ├── OCHamcrest │ ├── Info.plist │ ├── OCHamcrest-dummy.m │ ├── OCHamcrest-prefix.pch │ ├── OCHamcrest-umbrella.h │ ├── OCHamcrest.modulemap │ └── OCHamcrest.xcconfig │ ├── OCMock │ ├── Info.plist │ ├── OCMock-dummy.m │ ├── OCMock-prefix.pch │ ├── OCMock-umbrella.h │ ├── OCMock.modulemap │ └── OCMock.xcconfig │ ├── OCMockito │ ├── Info.plist │ ├── OCMockito-dummy.m │ ├── OCMockito-prefix.pch │ ├── OCMockito-umbrella.h │ ├── OCMockito.modulemap │ └── OCMockito.xcconfig │ ├── Pods-Tinylog │ ├── Info.plist │ ├── Pods-Tinylog-acknowledgements.markdown │ ├── Pods-Tinylog-acknowledgements.plist │ ├── Pods-Tinylog-dummy.m │ ├── Pods-Tinylog-frameworks.sh │ ├── Pods-Tinylog-resources.sh │ ├── Pods-Tinylog-umbrella.h │ ├── Pods-Tinylog.debug.xcconfig │ ├── Pods-Tinylog.modulemap │ └── Pods-Tinylog.release.xcconfig │ ├── Pods-TinylogTests │ ├── Info.plist │ ├── Pods-TinylogTests-acknowledgements.markdown │ ├── Pods-TinylogTests-acknowledgements.plist │ ├── Pods-TinylogTests-dummy.m │ ├── Pods-TinylogTests-frameworks.sh │ ├── Pods-TinylogTests-resources.sh │ ├── Pods-TinylogTests-umbrella.h │ ├── Pods-TinylogTests.debug.xcconfig │ ├── Pods-TinylogTests.modulemap │ └── Pods-TinylogTests.release.xcconfig │ ├── PureLayout │ ├── Info.plist │ ├── PureLayout-dummy.m │ ├── PureLayout-prefix.pch │ ├── PureLayout-umbrella.h │ ├── PureLayout.modulemap │ └── PureLayout.xcconfig │ ├── Reachability │ ├── Info.plist │ ├── Reachability-dummy.m │ ├── Reachability-prefix.pch │ ├── Reachability-umbrella.h │ ├── Reachability.modulemap │ └── Reachability.xcconfig │ ├── SGBackgroundView │ ├── Info.plist │ ├── SGBackgroundView-dummy.m │ ├── SGBackgroundView-prefix.pch │ ├── SGBackgroundView-umbrella.h │ ├── SGBackgroundView.modulemap │ └── SGBackgroundView.xcconfig │ ├── SGReachability │ ├── Info.plist │ ├── SGReachability-dummy.m │ ├── SGReachability-prefix.pch │ ├── SGReachability-umbrella.h │ ├── SGReachability.modulemap │ └── SGReachability.xcconfig │ ├── SVProgressHUD │ ├── Info.plist │ ├── SVProgressHUD-dummy.m │ ├── SVProgressHUD-prefix.pch │ ├── SVProgressHUD-umbrella.h │ ├── SVProgressHUD.modulemap │ └── SVProgressHUD.xcconfig │ ├── Specta │ ├── Info.plist │ ├── Specta-dummy.m │ ├── Specta-prefix.pch │ ├── Specta-umbrella.h │ ├── Specta.modulemap │ └── Specta.xcconfig │ └── TTTAttributedLabel │ ├── Info.plist │ ├── TTTAttributedLabel-dummy.m │ ├── TTTAttributedLabel-prefix.pch │ ├── TTTAttributedLabel-umbrella.h │ ├── TTTAttributedLabel.modulemap │ └── TTTAttributedLabel.xcconfig ├── README.md ├── Resources ├── Images │ ├── 3.5'-iPhone-Portrait@2x.png │ ├── 4'-iPhone-Portrait@2x.png │ ├── 4.7'-iPhone-Portrait@2x.png │ ├── 5.5'-iPhone-Landscape@3x.png │ ├── 5.5'-iPhone-Portrait@3x.png │ ├── 702-share.png │ ├── 702-share@2x.png │ ├── 702-share@3x.png │ ├── 706-cloud-toolbar.png │ ├── 706-cloud-toolbar@2x.png │ ├── 706-cloud-toolbar@3x.png │ ├── 706-cloud.png │ ├── 706-cloud@2x.png │ ├── 706-cloud@3x.png │ ├── 728-clock-toolbar.png │ ├── 728-clock-toolbar@2x.png │ ├── 728-clock-toolbar@3x.png │ ├── 740-gear-toolbar.png │ ├── 740-gear-toolbar@2x.png │ ├── 740-gear-toolbar@3x.png │ ├── 741-box.png │ ├── 741-box@2x.png │ ├── 741-box@3x.png │ ├── Icon-167.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── add-list.png │ ├── add-list@2x.png │ ├── add-list@3x.png │ ├── check.png │ ├── check@2x.png │ ├── checkbox-bg.png │ ├── checkbox-bg@2x.png │ ├── checkbox-bg@3x.png │ ├── close.png │ ├── close@2x.png │ ├── close@3x.png │ ├── close_blue.png │ ├── close_blue@2x.png │ ├── close_blue@3x.png │ ├── cloud.png │ ├── cloud@2x.png │ ├── cloud@3x.png │ ├── iPad-Landscape.png │ ├── iPad-Landscape@2x.png │ ├── iPad-Portrait.png │ ├── iPad-Portrait@2x.png │ ├── search-bar-bg-dark-blue.png │ ├── search-bar-bg-dark-blue@2x.png │ ├── search-bar-bg-dark-blue@3x.png │ ├── search-bar-bg-dark-gray.png │ ├── search-bar-bg-dark-gray@2x.png │ ├── search-bar-bg-dark-gray@3x.png │ ├── search-bar-bg-gray.png │ ├── search-bar-bg-gray@2x.png │ ├── search-bar-bg-gray@3x.png │ ├── search-bar-bg-white.png │ ├── search-bar-bg-white@2x.png │ └── search-bar-bg-white@3x.png └── Sounds │ └── beep-xylo.aif ├── Tinylog.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── spirosgerokostas.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── Tinylog.xcscheme │ │ └── TinylogTests.xcscheme └── xcuserdata │ ├── root.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── spirosgerokostas.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Tinylog.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── Tinylog.xcscmblueprint └── xcuserdata │ ├── root.xcuserdatad │ └── UserInterfaceState.xcuserstate │ └── spirosgerokostas.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Tinylog ├── Application │ ├── TLIAppDelegate.swift │ └── TLIConstants.swift ├── Assets.xcassets │ ├── 702-share.imageset │ │ ├── 702-share.png │ │ ├── 702-share@2x.png │ │ ├── 702-share@3x.png │ │ └── Contents.json │ ├── 706-cloud-toolbar.imageset │ │ ├── 706-cloud-toolbar.png │ │ ├── 706-cloud-toolbar@2x.png │ │ ├── 706-cloud-toolbar@3x.png │ │ └── Contents.json │ ├── 706-cloud.imageset │ │ ├── 706-cloud.png │ │ ├── 706-cloud@2x.png │ │ ├── 706-cloud@3x.png │ │ └── Contents.json │ ├── 728-clock-toolbar.imageset │ │ ├── 728-clock-toolbar.png │ │ ├── 728-clock-toolbar@2x.png │ │ ├── 728-clock-toolbar@3x.png │ │ └── Contents.json │ ├── 740-gear-toolbar.imageset │ │ ├── 740-gear-toolbar.png │ │ ├── 740-gear-toolbar@2x.png │ │ ├── 740-gear-toolbar@3x.png │ │ └── Contents.json │ ├── 741-box.imageset │ │ ├── 741-box.png │ │ ├── 741-box@2x.png │ │ ├── 741-box@3x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-167.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small@2x.png │ │ └── Icon-Small@3x.png │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ ├── 3.5'-iPhone-Portrait@2x.png │ │ ├── 4'-iPhone-Portrait@2x.png │ │ ├── 4.7'-iPhone-Portrait@2x.png │ │ ├── 5.5'-iPhone-Landscape@3x.png │ │ ├── 5.5'-iPhone-Portrait@3x.png │ │ ├── Contents.json │ │ ├── iPad-Landscape.png │ │ ├── iPad-Landscape@2x.png │ │ ├── iPad-Portrait.png │ │ └── iPad-Portrait@2x.png │ ├── add-list.imageset │ │ ├── Contents.json │ │ ├── add-list.png │ │ ├── add-list@2x.png │ │ └── add-list@3x.png │ ├── check.imageset │ │ ├── Contents.json │ │ ├── check.png │ │ └── check@2x.png │ ├── checkbox-bg.imageset │ │ ├── Contents.json │ │ ├── checkbox-bg.png │ │ ├── checkbox-bg@2x.png │ │ └── checkbox-bg@3x.png │ ├── close.imageset │ │ ├── Contents.json │ │ ├── close.png │ │ ├── close@2x.png │ │ └── close@3x.png │ ├── close_blue.imageset │ │ ├── Contents.json │ │ ├── close_blue.png │ │ ├── close_blue@2x.png │ │ └── close_blue@3x.png │ ├── cloud.imageset │ │ ├── Contents.json │ │ ├── cloud.png │ │ ├── cloud@2x.png │ │ └── cloud@3x.png │ ├── search-bar-bg-gray.imageset │ │ ├── Contents.json │ │ ├── search-bar-bg-gray.png │ │ ├── search-bar-bg-gray@2x.png │ │ └── search-bar-bg-gray@3x.png │ └── search-bar-bg-white.imageset │ │ ├── Contents.json │ │ ├── search-bar-bg-white.png │ │ ├── search-bar-bg-white@2x.png │ │ └── search-bar-bg-white@3x.png ├── Core Data Model │ ├── TLIList+CoreDataProperties.swift │ ├── TLIList.swift │ ├── TLIMention+CoreDataProperties.swift │ ├── TLIMention.swift │ ├── TLINotification+CoreDataProperties.swift │ ├── TLINotification.swift │ ├── TLITag+CoreDataProperties.swift │ ├── TLITag.swift │ ├── TLITask+CoreDataProperties.swift │ ├── TLITask.swift │ └── Tinylog.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── Tinylog 2.xcdatamodel │ │ └── contents │ │ ├── Tinylog 3.xcdatamodel │ │ └── contents │ │ ├── Tinylog 4.xcdatamodel │ │ └── contents │ │ ├── Tinylog 5.xcdatamodel │ │ └── contents │ │ ├── Tinylog 6.xcdatamodel │ │ └── contents │ │ ├── Tinylog 7.xcdatamodel │ │ └── contents │ │ └── Tinylog.xcdatamodel │ │ └── contents ├── Core Data │ └── TLICoreDataTableViewController.swift ├── Extensions │ ├── NSDate+Utilities.h │ ├── NSDate+Utilities.m │ ├── String+TinylogiOSAdditions.swift │ ├── UIColor+TinylogiOSAdditions.swift │ ├── UIFont+TinylogiOSAdditions.swift │ └── UIImage+TinylogiOSAdditions.swift ├── Headers │ └── Tinylog-Bridging-Header.h ├── Helpers │ └── Utils.swift ├── Info.plist ├── Network │ ├── CDEZipCloudFileSystem.h │ ├── CDEZipCloudFileSystem.m │ ├── TLIAnalyticsTracker.swift │ ├── TLICDController.swift │ ├── TLISyncManager.h │ └── TLISyncManager.m ├── Protocols │ ├── TLIAddListViewControllerDelegate.swift │ ├── TLIAddTaskViewDelegate.swift │ ├── TLIEditTaskViewControllerDelegate.swift │ └── TLITextFieldCellDelegate.swift ├── Setup │ └── TLISetupViewController.swift ├── Tinylog.entitlements ├── Utils │ ├── TLIDeviceInfo.h │ ├── TLIDeviceInfo.m │ ├── TLIDrawingUtils.h │ └── TLIDrawingUtils.m ├── View Controllers │ ├── Abstract │ │ └── TLIGroupedTableViewController.swift │ ├── Archive │ │ ├── TLIArchiveTasksViewController.swift │ │ └── TLIArchiveViewController.swift │ ├── Lists │ │ ├── TLIAddListViewController.swift │ │ ├── TLIListsViewController.swift │ │ └── TLIResultsTableViewController.swift │ ├── Mentions │ │ └── TLIMentionsViewController.swift │ ├── Reminder │ │ └── TLIReminderViewController.swift │ ├── Settings │ │ ├── TLIAboutViewController.swift │ │ ├── TLIHelpTableViewController.swift │ │ ├── TLISettingsFontPickerViewController.swift │ │ ├── TLISettingsTableViewController.swift │ │ └── TLITextSizeViewController.swift │ ├── Tags │ │ └── TLITagsViewController.swift │ ├── Tasks │ │ ├── TLIEditTaskViewController.swift │ │ └── TLITasksViewController.swift │ └── iPad │ │ └── TLISplitViewController.swift └── Views │ ├── Buttons │ ├── TLIAddListButton.swift │ ├── TLIArchiveButton.swift │ ├── TLICheckBoxButton.swift │ ├── TLICircleButton.swift │ ├── TLICloseButton.swift │ ├── TLIExportTasksButton.swift │ └── TLIRoundedButton.swift │ ├── Cells │ ├── TLIGroupedTableViewCell.swift │ ├── TLIHelpTableViewCell.swift │ ├── TLIListTableViewCell.swift │ ├── TLIReminderTaskTableViewCell.swift │ ├── TLITableViewCell.swift │ ├── TLITaskTableViewCell.swift │ └── TLITextFieldCell.swift │ ├── Controls │ ├── StepSliderControl.h │ └── StepSliderControl.m │ ├── Keyboard │ └── TLIKeyboardBar.swift │ ├── SGTextField.swift │ ├── TLIAddTaskView.swift │ ├── TLIListsFooterView.swift │ ├── TLIMenuColorsView.swift │ ├── TLITagsView.swift │ ├── TLITasksFooterView.swift │ ├── TLITextField.h │ ├── TLITextField.m │ └── TLITouchableView.swift └── TinylogTests ├── Info.plist ├── ListTests.swift └── TinylogTests.swift /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Crashlytics/Crashlytics.framework/README -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Crashlytics/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Crashlytics/README.md -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/run -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Crashlytics/submit -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/Cloud/CDECloudFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/Cloud/CDECloudFile.h -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/Cloud/CDECloudFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/Cloud/CDECloudFile.m -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/Cloud/CDEEventFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/Cloud/CDEEventFile.h -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/Cloud/CDEEventFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/Cloud/CDEEventFile.m -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/General/CDEDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/General/CDEDefines.h -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/General/CDEDefines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/General/CDEDefines.m -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/General/Ensembles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/General/Ensembles.h -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/Model/CDEDataFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/Model/CDEDataFile.h -------------------------------------------------------------------------------- /Pods/Ensembles/Framework/Source/Model/CDEDataFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/Framework/Source/Model/CDEDataFile.m -------------------------------------------------------------------------------- /Pods/Ensembles/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/LICENCE.txt -------------------------------------------------------------------------------- /Pods/Ensembles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Ensembles/README.md -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/Fabric.framework/README -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/Fabric.framework/run -------------------------------------------------------------------------------- /Pods/Fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/README.md -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/iOS/Fabric.framework/Fabric -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/iOS/Fabric.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/iOS/Fabric.framework/run -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/iOS/Fabric.framework/uploadDSYM -------------------------------------------------------------------------------- /Pods/Fabric/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/run -------------------------------------------------------------------------------- /Pods/Fabric/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/upload-symbols -------------------------------------------------------------------------------- /Pods/Fabric/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Fabric/uploadDSYM -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEAsynchronousOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/CDEAsynchronousOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEAsynchronousTaskQueue.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/CDEAsynchronousTaskQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEAvailabilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/CDEAvailabilityMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEBaselineConsolidator.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Baselines/CDEBaselineConsolidator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDECloudDirectory.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud/CDECloudDirectory.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDECloudFile.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud/CDECloudFile.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDECloudFileSystem.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud/CDECloudFileSystem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDECloudManager.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud/CDECloudManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEDataFile.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Model/CDEDataFile.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/CDEDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEEventBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Events/CDEEventBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEEventFile.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud/CDEEventFile.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEEventIntegrator.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Events/CDEEventIntegrator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEEventMigrator.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Events/CDEEventMigrator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEEventRevision.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Model/CDEEventRevision.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEEventStore.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Events/CDEEventStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEFileDownloadOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud File Systems/CDEFileDownloadOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEFileUploadOperation.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud File Systems/CDEFileUploadOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEFoundationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/CDEFoundationAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEGlobalIdentifier.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Model/CDEGlobalIdentifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEICloudFileSystem.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud File Systems/CDEICloudFileSystem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDELocalCloudFileSystem.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Cloud File Systems/CDELocalCloudFileSystem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEObjectChange.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Model/CDEObjectChange.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEPersistentStoreEnsemble.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Ensemble/CDEPersistentStoreEnsemble.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEPersistentStoreImporter.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Ensemble/CDEPersistentStoreImporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEPropertyChangeValue.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Events/CDEPropertyChangeValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDERebaser.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Baselines/CDERebaser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDERevision.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Revisioning/CDERevision.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDERevisionManager.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Revisioning/CDERevisionManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDERevisionSet.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Revisioning/CDERevisionSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDESaveMonitor.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Events/CDESaveMonitor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/CDEStoreModificationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/Model/CDEStoreModificationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/Ensembles.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/Ensembles.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/NSFileCoordinator+CDEAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/NSFileCoordinator+CDEAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/NSManagedObjectModel+CDEAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/NSManagedObjectModel+CDEAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Ensembles/NSMapTable+CDEAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Ensembles/Framework/Source/General/NSMapTable+CDEAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRAllowingInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRAllowingInvocation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRClassImposterizer.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRClassImposterizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRConsecutiveCallAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRConsecutiveCallAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRDescribable.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRDescribable.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRExpectation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRExpectationAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRExpectationAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRExpectationBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRExpectationBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRExpectationCardinality.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRExpectationCardinality.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRExpectationMessage.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRExpectationMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRHamcrestSupport.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRHamcrestSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRImposter.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRImposter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRImposterizer.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRImposterizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRInvocationComparitor.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRInvocationComparitor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRInvocationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRInvocationExpectation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockery.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockery.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMocky.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockyState.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockyState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockyStateMachine.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockyStateMachine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockyStateTransitionAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockyStateTransitionAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockyStates.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockyStates.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMockySugar.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMockySugar.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRMultipleAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRMultipleAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRNotificationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRNotificationExpectation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRObjectImposterizer.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRObjectImposterizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRPerformBlockAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRPerformBlockAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRPerformBlockArgumentAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRPerformBlockArgumentAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRProtocolImposterizer.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRProtocolImposterizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRReturnValueAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRReturnValueAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRTestCase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRThrowExceptionAction.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRThrowExceptionAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/LRUnexpectedInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Classes/LRMocky/LRUnexpectedInvocation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/NSException_SenTestFailure.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Vendor/NSException_SenTestFailure.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/NSInvocation+LRAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Vendor/NSInvocation+LRAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/LRMocky/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../LRMocky/Vendor/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerChangeRequestMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerChangeRequestMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerChangeResponseMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerChangeResponseMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerClearRequestMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerClearRequestMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerClearResponseMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerClearResponseMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerConnection.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerConnection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerDeviceInfoRequestMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerDeviceInfoRequestMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerDeviceInfoResponseMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerDeviceInfoResponseMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerDisconnectMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerDisconnectMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerSnapshotRequestMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerSnapshotRequestMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerSnapshotResponseMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerSnapshotResponseMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerTweakRequestMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerTweakRequestMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPABTestDesignerTweakResponseMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPABTestDesignerTweakResponseMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPAbstractABTestDesignerMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPAbstractABTestDesignerMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPApplicationStateSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPApplicationStateSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPClassDescription.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPClassDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPDesignerEventBindingMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPDesignerEventBindingMessage.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPDesignerSessionCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPDesignerSessionCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPEnumDescription.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPEnumDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPEventBinding.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPEventBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPFoundation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPLogger.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPLogger.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPNotificationViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPNotificationViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPObjectIdentifierProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPObjectIdentifierProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPObjectIdentityProvider.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPObjectIdentityProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPObjectSelector.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPObjectSelector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPObjectSerializer.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPObjectSerializer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPObjectSerializerConfig.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPObjectSerializerConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPObjectSerializerContext.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPObjectSerializerContext.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPPropertyDescription.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPPropertyDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPSequenceGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPSequenceGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPSurvey.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPSurvey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPSurveyNavigationController.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPSurveyNavigationController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPSurveyQuestion.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPSurveyQuestion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPSurveyQuestionViewController.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPSurveyQuestionViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPSwizzler.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPSwizzler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPTweak.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPTweak.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPTweakInline.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPTweakInline.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPTweakInlineInternal.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPTweakInlineInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPTweakStore.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPTweakStore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPTypeDescription.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPTypeDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPUIControlBinding.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPUIControlBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPUITableViewBinding.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPUITableViewBinding.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPValueTransformers.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPValueTransformers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPVariant.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPVariant.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MPWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MPWebSocket.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/Mixpanel.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/Mixpanel.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/MixpanelExceptionHandler.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/MixpanelExceptionHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/NSData+MPBase64.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/NSData+MPBase64.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/NSInvocation+MPHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/NSInvocation+MPHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/UIColor+MPColor.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/UIColor+MPColor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/UIImage+MPAverageColor.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/UIImage+MPAverageColor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/UIImage+MPImageEffects.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/UIImage+MPImageEffects.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/UIView+MPHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/UIView+MPHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Mixpanel/_MPTweakBindObserver.h: -------------------------------------------------------------------------------- 1 | ../../../Mixpanel/Mixpanel/_MPTweakBindObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCAllOf.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Logical/HCAllOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCAnyOf.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Logical/HCAnyOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCAssertThat.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCAssertThat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCBaseDescription.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCBaseDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCBaseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCBaseMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCClassMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCCollectMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/Helpers/HCCollectMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCConformsToProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCDescribedAs.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Decorator/HCDescribedAs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCDescription.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCGenericTestFailureHandler.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCGenericTestFailureHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCHasCount.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCHasCount.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCHasDescription.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCHasDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCHasProperty.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCHasProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/Helpers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIs.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Decorator/HCIs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsAnything.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Logical/HCIsAnything.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Number/HCIsCloseTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsEqual.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCIsEqual.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsEqualIgnoringWhiteSpace.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCIsEqualIgnoringWhiteSpace.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Number/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsIn.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Collection/HCIsIn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsNil.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCIsNil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsNot.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Logical/HCIsNot.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsSame.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCIsSame.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCIsTypeOf.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Object/HCIsTypeOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCNumberAssert.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Number/HCNumberAssert.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCOrderingComparison.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Number/HCOrderingComparison.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/Helpers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCSelfDescribing.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCSelfDescribing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCSenTestFailureHandler.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCSenTestFailureHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCStringContains.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCStringContains.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCStringDescription.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCStringDescription.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCStringEndsWith.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCStringEndsWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCStringStartsWith.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCStringStartsWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCSubstringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Library/Text/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCTestFailure.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCTestFailure.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCTestFailureHandler.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCTestFailureHandlerChain.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCTestFailureHandlerChain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCWrapInMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/Helpers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/HCXCTestFailureHandler.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/Core/HCXCTestFailureHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCHamcrest/OCHamcrest.h: -------------------------------------------------------------------------------- 1 | ../../../OCHamcrest/Source/OCHamcrest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMockRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCPartialMockRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTArgumentCaptor.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTArgumentCaptor.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTArgumentGetterChain.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTArgumentGetterChain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTAtLeastTimes.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTAtLeastTimes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTBaseMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTBaseMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTBlockArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBlockArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTBoolArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTBoolArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTBoolReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTBoolReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTCapturingMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTCapturingMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTCharArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTCharArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTCharReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTCharReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTClassArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTClassArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTClassObjectMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTClassObjectMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTClassReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTClassReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTDoubleArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTDoubleArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTDoubleReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTDoubleReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTExactTimes.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTExactTimes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTFloatArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTFloatArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTFloatReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTFloatReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTIntArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTIntArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTIntReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTIntReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTInvocationContainer.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTInvocationContainer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTInvocationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTLongArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTLongLongArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTLongLongArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTLongLongReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongLongReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTLongReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTLongReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTMockingProgress.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTMockingProgress.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTMockitoCore.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTMockitoCore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTObjectAndProtocolMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTObjectAndProtocolMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTObjectArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTObjectArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTObjectMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTObjectMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTObjectReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTObjectReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTOngoingStubbing.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTOngoingStubbing.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTPointerArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTPointerArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTPrimitiveArgumentMatching.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTPrimitiveArgumentMatching.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTProtocolMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTProtocolMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTReturnValueSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTReturnValueSetterChain.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTReturnValueSetterChain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTSelectorArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTSelectorArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTShortArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTShortArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTShortReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTShortReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTStructArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTStructArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTStubbedInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTStubbedInvocationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTTestLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTTestLocation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedCharArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedCharArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedCharReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedCharReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedIntArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedIntArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedIntReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedIntReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedLongArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedLongLongArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedLongLongArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedLongLongReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongLongReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedLongReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedLongReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedShortArgumentGetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ArgumentGetters/MKTUnsignedShortArgumentGetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTUnsignedShortReturnSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/Helpers/ReturnValueSetters/MKTUnsignedShortReturnSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTVerificationData.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTVerificationData.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/MKTVerificationMode.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/MKTVerificationMode.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/NSInvocation+OCMockito.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/NSInvocation+OCMockito.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMockito/OCMockito.h: -------------------------------------------------------------------------------- 1 | ../../../OCMockito/Source/OCMockito/OCMockito.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/ALView+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/ALView+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/NSArray+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSArray+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/NSLayoutConstraint+PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/NSLayoutConstraint+PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/PureLayout+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout+Internal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/PureLayout/PureLayoutDefines.h: -------------------------------------------------------------------------------- 1 | ../../../PureLayout/PureLayout/PureLayout/PureLayoutDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Reachability/Reachability.h: -------------------------------------------------------------------------------- 1 | ../../../Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SGReachability/SGReachabilityController.h: -------------------------------------------------------------------------------- 1 | ../../../SGReachability/Pod/Classes/SGReachabilityController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVIndefiniteAnimatedView.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVIndefiniteAnimatedView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/TTTAttributedLabel/TTTAttributedLabel.h: -------------------------------------------------------------------------------- 1 | ../../../TTTAttributedLabel/TTTAttributedLabel/TTTAttributedLabel.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/ANSCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/Answers.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/CLSAttributes.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/CLSLogging.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/CLSReport.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/CLSStackFrame.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Crashlytics/Crashlytics/Crashlytics.h: -------------------------------------------------------------------------------- 1 | ../../../../Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fabric/Fabric/FABAttributes.h: -------------------------------------------------------------------------------- 1 | ../../../../Fabric/iOS/Fabric.framework/Headers/FABAttributes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fabric/Fabric/Fabric.h: -------------------------------------------------------------------------------- 1 | ../../../../Fabric/iOS/Fabric.framework/Headers/Fabric.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRDescribable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRDescribable.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRExpectationMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRExpectationMessage.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRExpectationMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRExpectationMessage.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRInvocationComparitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRInvocationComparitor.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRInvocationComparitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRInvocationComparitor.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRAllowingInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRAllowingInvocation.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRAllowingInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRAllowingInvocation.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRClassImposterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRClassImposterizer.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRClassImposterizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRClassImposterizer.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRExpectation.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRExpectationAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRExpectationAction.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRExpectationBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRExpectationBuilder.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRExpectationBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRExpectationBuilder.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRHamcrestSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRHamcrestSupport.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRImposter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRImposter.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRImposter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRImposter.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRImposterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRImposterizer.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRImposterizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRImposterizer.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockObject.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockObject.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockery.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockery.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockyState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockyState.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockyState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockyState.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockyStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockyStateMachine.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockyStateMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockyStateMachine.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockyStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockyStates.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockyStates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockyStates.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMockySugar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMockySugar.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMultipleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMultipleAction.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRMultipleAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRMultipleAction.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRObjectImposterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRObjectImposterizer.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRObjectImposterizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRObjectImposterizer.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRPerformBlockAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRPerformBlockAction.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRPerformBlockAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRPerformBlockAction.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRReturnValueAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRReturnValueAction.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRReturnValueAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRReturnValueAction.m -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRTestCase.h -------------------------------------------------------------------------------- /Pods/LRMocky/Classes/LRMocky/LRTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Classes/LRMocky/LRTestCase.m -------------------------------------------------------------------------------- /Pods/LRMocky/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/License.txt -------------------------------------------------------------------------------- /Pods/LRMocky/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/README.markdown -------------------------------------------------------------------------------- /Pods/LRMocky/Vendor/NSException_SenTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Vendor/NSException_SenTestFailure.h -------------------------------------------------------------------------------- /Pods/LRMocky/Vendor/NSInvocation+LRAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Vendor/NSInvocation+LRAdditions.h -------------------------------------------------------------------------------- /Pods/LRMocky/Vendor/NSInvocation+LRAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Vendor/NSInvocation+LRAdditions.m -------------------------------------------------------------------------------- /Pods/LRMocky/Vendor/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Vendor/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/LRMocky/Vendor/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/LRMocky/Vendor/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Mixpanel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/LICENSE -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPABTestDesignerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPABTestDesignerConnection.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPABTestDesignerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPABTestDesignerConnection.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPABTestDesignerMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPABTestDesignerMessage.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPClassDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPClassDescription.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPClassDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPClassDescription.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPDesignerSessionCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPDesignerSessionCollection.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPDesignerTrackMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPDesignerTrackMessage.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPEnumDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPEnumDescription.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPEnumDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPEnumDescription.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPEventBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPEventBinding.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPEventBinding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPEventBinding.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPFoundation.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPLogger.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPNotification.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPNotification.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPNotification.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPNotification.storyboard -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectIdentifierProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectIdentifierProvider.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectIdentityProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectIdentityProvider.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectIdentityProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectIdentityProvider.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSelector.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSelector.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSerializer.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSerializer.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSerializerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSerializerConfig.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSerializerConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSerializerConfig.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSerializerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSerializerContext.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPObjectSerializerContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPObjectSerializerContext.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPPropertyDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPPropertyDescription.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPPropertyDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPPropertyDescription.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSequenceGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSequenceGenerator.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSequenceGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSequenceGenerator.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSurvey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSurvey.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSurvey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSurvey.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSurvey.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSurvey.storyboard -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSurveyQuestion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSurveyQuestion.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSurveyQuestion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSurveyQuestion.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSwizzler.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPSwizzler.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweak.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweak.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweakInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweakInline.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweakInline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweakInline.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweakInlineInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweakInlineInternal.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweakStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweakStore.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTweakStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTweakStore.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTypeDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTypeDescription.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPTypeDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPTypeDescription.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPUIControlBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPUIControlBinding.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPUIControlBinding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPUIControlBinding.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPUITableViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPUITableViewBinding.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPUITableViewBinding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPUITableViewBinding.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPValueTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPValueTransformers.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPVariant.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPVariant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPVariant.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPWebSocket.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MPWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MPWebSocket.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/Mixpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/Mixpanel.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/Mixpanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/Mixpanel.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MixpanelExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MixpanelExceptionHandler.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/MixpanelExceptionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/MixpanelExceptionHandler.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/NSData+MPBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/NSData+MPBase64.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/NSData+MPBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/NSData+MPBase64.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/NSInvocation+MPHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/NSInvocation+MPHelpers.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/NSInvocation+MPHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/NSInvocation+MPHelpers.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIColor+MPColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIColor+MPColor.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIColor+MPColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIColor+MPColor.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIImage+MPAverageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIImage+MPAverageColor.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIImage+MPAverageColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIImage+MPAverageColor.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIImage+MPImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIImage+MPImageEffects.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIImage+MPImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIImage+MPImageEffects.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIView+MPHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIView+MPHelpers.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/UIView+MPHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/UIView+MPHelpers.m -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/_MPTweakBindObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/_MPTweakBindObserver.h -------------------------------------------------------------------------------- /Pods/Mixpanel/Mixpanel/_MPTweakBindObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/Mixpanel/_MPTweakBindObserver.m -------------------------------------------------------------------------------- /Pods/Mixpanel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Mixpanel/README.md -------------------------------------------------------------------------------- /Pods/OCHamcrest/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/LICENSE.txt -------------------------------------------------------------------------------- /Pods/OCHamcrest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/README.md -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCAssertThat.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCAssertThat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCAssertThat.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCBaseDescription.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCBaseDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCBaseDescription.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCBaseMatcher.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCBaseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCBaseMatcher.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCDescription.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCMatcher.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCSelfDescribing.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCStringDescription.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCStringDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCStringDescription.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCTestFailure.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCTestFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCTestFailure.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCTestFailureHandler.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCXCTestFailureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCXCTestFailureHandler.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Core/HCXCTestFailureHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Core/HCXCTestFailureHandler.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Collection/HCIsIn.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Decorator/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Decorator/HCIs.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Decorator/HCIs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Decorator/HCIs.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Logical/HCAllOf.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Logical/HCAnyOf.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Logical/HCIsNot.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Number/HCIsCloseTo.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsEqual.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsNil.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsNil.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsSame.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsSame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsSame.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.h -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/Library/Object/HCIsTypeOf.m -------------------------------------------------------------------------------- /Pods/OCHamcrest/Source/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCHamcrest/Source/OCHamcrest.h -------------------------------------------------------------------------------- /Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/README.md -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMockRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCMockRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCPartialMockRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCPartialMockRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCPartialMockRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCPartialMockRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /Pods/OCMockito/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/LICENSE.txt -------------------------------------------------------------------------------- /Pods/OCMockito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/README.md -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTArgumentCaptor.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTAtLeastTimes.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTBaseMockObject.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTClassObjectMock.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTExactTimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTExactTimes.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTExactTimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTExactTimes.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTMockingProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTMockingProgress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTMockingProgress.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTMockitoCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTMockitoCore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTMockitoCore.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTObjectMock.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTObjectMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTObjectMock.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTOngoingStubbing.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTProtocolMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTProtocolMock.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTTestLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTTestLocation.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/MKTTestLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/MKTTestLocation.m -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/OCMockito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/OCMockito.h -------------------------------------------------------------------------------- /Pods/OCMockito/Source/OCMockito/OCMockito.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/OCMockito/Source/OCMockito/OCMockito.m -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/PureLayout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/PureLayout/LICENSE -------------------------------------------------------------------------------- /Pods/PureLayout/PureLayout/PureLayout/PureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/PureLayout/PureLayout/PureLayout/PureLayout.h -------------------------------------------------------------------------------- /Pods/PureLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/PureLayout/README.md -------------------------------------------------------------------------------- /Pods/Reachability/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Reachability/LICENCE.txt -------------------------------------------------------------------------------- /Pods/Reachability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Reachability/README.md -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Reachability/Reachability.h -------------------------------------------------------------------------------- /Pods/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Reachability/Reachability.m -------------------------------------------------------------------------------- /Pods/SGBackgroundView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SGBackgroundView/LICENSE -------------------------------------------------------------------------------- /Pods/SGBackgroundView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SGBackgroundView/README.md -------------------------------------------------------------------------------- /Pods/SGReachability/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SGReachability/LICENSE -------------------------------------------------------------------------------- /Pods/SGReachability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SGReachability/README.md -------------------------------------------------------------------------------- /Pods/SVProgressHUD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SVProgressHUD/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SVProgressHUD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SVProgressHUD/README.md -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.m -------------------------------------------------------------------------------- /Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/README.md -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTCallSite.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCompiledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTCompiledExample.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTExample.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTExampleGroup.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTSpec.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTTestSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SPTTestSuite.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SpectaDSL.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/SpectaUtility.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Specta/Specta/Specta/XCTestCase+Specta.m -------------------------------------------------------------------------------- /Pods/TTTAttributedLabel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/TTTAttributedLabel/LICENSE -------------------------------------------------------------------------------- /Pods/TTTAttributedLabel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/TTTAttributedLabel/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Ensembles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Ensembles/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Expecta/Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Expecta/Expecta-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Expecta/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Expecta/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/LRMocky/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/LRMocky/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/LRMocky/LRMocky-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/LRMocky/LRMocky-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Mixpanel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Mixpanel/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/OCHamcrest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/OCHamcrest/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/OCMock/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/OCMock/OCMock-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/OCMock.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/OCMock/OCMock.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/OCMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/OCMock/OCMock.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMockito/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/OCMockito/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tinylog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Pods-Tinylog/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PureLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/PureLayout/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Reachability/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Reachability/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Specta/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Specta/Specta-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Specta.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Specta/Specta.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Pods/Target Support Files/Specta/Specta.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Images/3.5'-iPhone-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/3.5'-iPhone-Portrait@2x.png -------------------------------------------------------------------------------- /Resources/Images/4'-iPhone-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/4'-iPhone-Portrait@2x.png -------------------------------------------------------------------------------- /Resources/Images/4.7'-iPhone-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/4.7'-iPhone-Portrait@2x.png -------------------------------------------------------------------------------- /Resources/Images/5.5'-iPhone-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/5.5'-iPhone-Landscape@3x.png -------------------------------------------------------------------------------- /Resources/Images/5.5'-iPhone-Portrait@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/5.5'-iPhone-Portrait@3x.png -------------------------------------------------------------------------------- /Resources/Images/702-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/702-share.png -------------------------------------------------------------------------------- /Resources/Images/702-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/702-share@2x.png -------------------------------------------------------------------------------- /Resources/Images/702-share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/702-share@3x.png -------------------------------------------------------------------------------- /Resources/Images/706-cloud-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/706-cloud-toolbar.png -------------------------------------------------------------------------------- /Resources/Images/706-cloud-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/706-cloud-toolbar@2x.png -------------------------------------------------------------------------------- /Resources/Images/706-cloud-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/706-cloud-toolbar@3x.png -------------------------------------------------------------------------------- /Resources/Images/706-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/706-cloud.png -------------------------------------------------------------------------------- /Resources/Images/706-cloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/706-cloud@2x.png -------------------------------------------------------------------------------- /Resources/Images/706-cloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/706-cloud@3x.png -------------------------------------------------------------------------------- /Resources/Images/728-clock-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/728-clock-toolbar.png -------------------------------------------------------------------------------- /Resources/Images/728-clock-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/728-clock-toolbar@2x.png -------------------------------------------------------------------------------- /Resources/Images/728-clock-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/728-clock-toolbar@3x.png -------------------------------------------------------------------------------- /Resources/Images/740-gear-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/740-gear-toolbar.png -------------------------------------------------------------------------------- /Resources/Images/740-gear-toolbar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/740-gear-toolbar@2x.png -------------------------------------------------------------------------------- /Resources/Images/740-gear-toolbar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/740-gear-toolbar@3x.png -------------------------------------------------------------------------------- /Resources/Images/741-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/741-box.png -------------------------------------------------------------------------------- /Resources/Images/741-box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/741-box@2x.png -------------------------------------------------------------------------------- /Resources/Images/741-box@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/741-box@3x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-167.png -------------------------------------------------------------------------------- /Resources/Images/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-60@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-60@3x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-76.png -------------------------------------------------------------------------------- /Resources/Images/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-76@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-Small@2x.png -------------------------------------------------------------------------------- /Resources/Images/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/Icon-Small@3x.png -------------------------------------------------------------------------------- /Resources/Images/add-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/add-list.png -------------------------------------------------------------------------------- /Resources/Images/add-list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/add-list@2x.png -------------------------------------------------------------------------------- /Resources/Images/add-list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/add-list@3x.png -------------------------------------------------------------------------------- /Resources/Images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/check.png -------------------------------------------------------------------------------- /Resources/Images/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/check@2x.png -------------------------------------------------------------------------------- /Resources/Images/checkbox-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/checkbox-bg.png -------------------------------------------------------------------------------- /Resources/Images/checkbox-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/checkbox-bg@2x.png -------------------------------------------------------------------------------- /Resources/Images/checkbox-bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/checkbox-bg@3x.png -------------------------------------------------------------------------------- /Resources/Images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/close.png -------------------------------------------------------------------------------- /Resources/Images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/close@2x.png -------------------------------------------------------------------------------- /Resources/Images/close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/close@3x.png -------------------------------------------------------------------------------- /Resources/Images/close_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/close_blue.png -------------------------------------------------------------------------------- /Resources/Images/close_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/close_blue@2x.png -------------------------------------------------------------------------------- /Resources/Images/close_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/close_blue@3x.png -------------------------------------------------------------------------------- /Resources/Images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/cloud.png -------------------------------------------------------------------------------- /Resources/Images/cloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/cloud@2x.png -------------------------------------------------------------------------------- /Resources/Images/cloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/cloud@3x.png -------------------------------------------------------------------------------- /Resources/Images/iPad-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/iPad-Landscape.png -------------------------------------------------------------------------------- /Resources/Images/iPad-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/iPad-Landscape@2x.png -------------------------------------------------------------------------------- /Resources/Images/iPad-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/iPad-Portrait.png -------------------------------------------------------------------------------- /Resources/Images/iPad-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/iPad-Portrait@2x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-dark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-dark-blue.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-dark-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-dark-blue@2x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-dark-blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-dark-blue@3x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-dark-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-dark-gray.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-dark-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-dark-gray@2x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-dark-gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-dark-gray@3x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-gray.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-gray@2x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-gray@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-gray@3x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-white.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-white@2x.png -------------------------------------------------------------------------------- /Resources/Images/search-bar-bg-white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Images/search-bar-bg-white@3x.png -------------------------------------------------------------------------------- /Resources/Sounds/beep-xylo.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Resources/Sounds/beep-xylo.aif -------------------------------------------------------------------------------- /Tinylog.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tinylog.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tinylog/Application/TLIAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Application/TLIAppDelegate.swift -------------------------------------------------------------------------------- /Tinylog/Application/TLIConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Application/TLIConstants.swift -------------------------------------------------------------------------------- /Tinylog/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tinylog/Assets.xcassets/check.imageset/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Assets.xcassets/check.imageset/check.png -------------------------------------------------------------------------------- /Tinylog/Assets.xcassets/close.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Assets.xcassets/close.imageset/close.png -------------------------------------------------------------------------------- /Tinylog/Assets.xcassets/cloud.imageset/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Assets.xcassets/cloud.imageset/cloud.png -------------------------------------------------------------------------------- /Tinylog/Core Data Model/TLIList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Core Data Model/TLIList.swift -------------------------------------------------------------------------------- /Tinylog/Core Data Model/TLIMention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Core Data Model/TLIMention.swift -------------------------------------------------------------------------------- /Tinylog/Core Data Model/TLINotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Core Data Model/TLINotification.swift -------------------------------------------------------------------------------- /Tinylog/Core Data Model/TLITag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Core Data Model/TLITag.swift -------------------------------------------------------------------------------- /Tinylog/Core Data Model/TLITask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Core Data Model/TLITask.swift -------------------------------------------------------------------------------- /Tinylog/Extensions/NSDate+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Extensions/NSDate+Utilities.h -------------------------------------------------------------------------------- /Tinylog/Extensions/NSDate+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Extensions/NSDate+Utilities.m -------------------------------------------------------------------------------- /Tinylog/Headers/Tinylog-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Headers/Tinylog-Bridging-Header.h -------------------------------------------------------------------------------- /Tinylog/Helpers/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Helpers/Utils.swift -------------------------------------------------------------------------------- /Tinylog/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Info.plist -------------------------------------------------------------------------------- /Tinylog/Network/CDEZipCloudFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Network/CDEZipCloudFileSystem.h -------------------------------------------------------------------------------- /Tinylog/Network/CDEZipCloudFileSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Network/CDEZipCloudFileSystem.m -------------------------------------------------------------------------------- /Tinylog/Network/TLIAnalyticsTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Network/TLIAnalyticsTracker.swift -------------------------------------------------------------------------------- /Tinylog/Network/TLICDController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Network/TLICDController.swift -------------------------------------------------------------------------------- /Tinylog/Network/TLISyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Network/TLISyncManager.h -------------------------------------------------------------------------------- /Tinylog/Network/TLISyncManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Network/TLISyncManager.m -------------------------------------------------------------------------------- /Tinylog/Protocols/TLIAddTaskViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Protocols/TLIAddTaskViewDelegate.swift -------------------------------------------------------------------------------- /Tinylog/Protocols/TLITextFieldCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Protocols/TLITextFieldCellDelegate.swift -------------------------------------------------------------------------------- /Tinylog/Setup/TLISetupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Setup/TLISetupViewController.swift -------------------------------------------------------------------------------- /Tinylog/Tinylog.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Tinylog.entitlements -------------------------------------------------------------------------------- /Tinylog/Utils/TLIDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Utils/TLIDeviceInfo.h -------------------------------------------------------------------------------- /Tinylog/Utils/TLIDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Utils/TLIDeviceInfo.m -------------------------------------------------------------------------------- /Tinylog/Utils/TLIDrawingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Utils/TLIDrawingUtils.h -------------------------------------------------------------------------------- /Tinylog/Utils/TLIDrawingUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Utils/TLIDrawingUtils.m -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLIAddListButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLIAddListButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLIArchiveButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLIArchiveButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLICheckBoxButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLICheckBoxButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLICircleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLICircleButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLICloseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLICloseButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLIExportTasksButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLIExportTasksButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Buttons/TLIRoundedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Buttons/TLIRoundedButton.swift -------------------------------------------------------------------------------- /Tinylog/Views/Cells/TLIGroupedTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Cells/TLIGroupedTableViewCell.swift -------------------------------------------------------------------------------- /Tinylog/Views/Cells/TLIHelpTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Cells/TLIHelpTableViewCell.swift -------------------------------------------------------------------------------- /Tinylog/Views/Cells/TLIListTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Cells/TLIListTableViewCell.swift -------------------------------------------------------------------------------- /Tinylog/Views/Cells/TLITableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Cells/TLITableViewCell.swift -------------------------------------------------------------------------------- /Tinylog/Views/Cells/TLITaskTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Cells/TLITaskTableViewCell.swift -------------------------------------------------------------------------------- /Tinylog/Views/Cells/TLITextFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Cells/TLITextFieldCell.swift -------------------------------------------------------------------------------- /Tinylog/Views/Controls/StepSliderControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Controls/StepSliderControl.h -------------------------------------------------------------------------------- /Tinylog/Views/Controls/StepSliderControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Controls/StepSliderControl.m -------------------------------------------------------------------------------- /Tinylog/Views/Keyboard/TLIKeyboardBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/Keyboard/TLIKeyboardBar.swift -------------------------------------------------------------------------------- /Tinylog/Views/SGTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/SGTextField.swift -------------------------------------------------------------------------------- /Tinylog/Views/TLIAddTaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLIAddTaskView.swift -------------------------------------------------------------------------------- /Tinylog/Views/TLIListsFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLIListsFooterView.swift -------------------------------------------------------------------------------- /Tinylog/Views/TLIMenuColorsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLIMenuColorsView.swift -------------------------------------------------------------------------------- /Tinylog/Views/TLITagsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLITagsView.swift -------------------------------------------------------------------------------- /Tinylog/Views/TLITasksFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLITasksFooterView.swift -------------------------------------------------------------------------------- /Tinylog/Views/TLITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLITextField.h -------------------------------------------------------------------------------- /Tinylog/Views/TLITextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLITextField.m -------------------------------------------------------------------------------- /Tinylog/Views/TLITouchableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/Tinylog/Views/TLITouchableView.swift -------------------------------------------------------------------------------- /TinylogTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/TinylogTests/Info.plist -------------------------------------------------------------------------------- /TinylogTests/ListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/TinylogTests/ListTests.swift -------------------------------------------------------------------------------- /TinylogTests/TinylogTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binarylevel/Tinylog-iOS/HEAD/TinylogTests/TinylogTests.swift --------------------------------------------------------------------------------