├── .gitignore ├── Persons-Bridging-Header.h ├── Persons.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Persons.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── Persons.xccheckout ├── Persons ├── AppDelegate.swift ├── AppDependencies.swift ├── ApplicationAssembly.swift ├── Base.lproj │ └── LaunchScreen.xib ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── Main.storyboard ├── ManagedPerson.swift ├── NSDateConvenience.swift ├── Person.swift ├── PersonCoreDataStore.swift ├── PersonDataStore.swift ├── PersonDetailAssembly.swift ├── PersonDetailInteractor.swift ├── PersonDetailInteractorIO.swift ├── PersonDetailPresenter.swift ├── PersonDetailViewController.swift ├── PersonDetailViewModel.swift ├── PersonDetailWireframe.swift ├── PersonListAssembly.swift ├── PersonListDisplayData.swift ├── PersonListDisplaySection.swift ├── PersonListInteractor.swift ├── PersonListInteractorIO.swift ├── PersonListPresenter.swift ├── PersonListViewController.swift ├── PersonListViewModel.swift ├── PersonListWireframe.swift ├── Persons.xcdatamodeld │ ├── .xccurrentversion │ └── Persons.xcdatamodel │ │ └── contents └── RootWireframe.swift ├── PersonsTests ├── Info.plist └── PersonsTests.swift ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Build │ │ ├── MagicalRecord │ │ │ ├── CoreData+MagicalRecord.h │ │ │ ├── MagicalImportFunctions.h │ │ │ ├── MagicalRecord+Actions.h │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ ├── MagicalRecord+Options.h │ │ │ ├── MagicalRecord+Setup.h │ │ │ ├── MagicalRecord+ShorthandSupport.h │ │ │ ├── MagicalRecord+iCloud.h │ │ │ ├── MagicalRecord.h │ │ │ ├── MagicalRecordDeprecated.h │ │ │ ├── MagicalRecordLogging.h │ │ │ ├── MagicalRecordShorthand.h │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ └── NSString+MagicalDataImport.h │ │ └── Typhoon │ │ │ ├── Collections+CustomInjection.h │ │ │ ├── NSArray+TyphoonManualEnumeration.h │ │ │ ├── NSDictionary+CustomInjection.h │ │ │ ├── NSInvocation+TCFInstanceBuilder.h │ │ │ ├── NSInvocation+TCFUnwrapValues.h │ │ │ ├── NSMethodSignature+TCFUnwrapValues.h │ │ │ ├── NSNullTypeConverter.h │ │ │ ├── NSObject+DeallocNotification.h │ │ │ ├── NSObject+FactoryHooks.h │ │ │ ├── NSObject+PropertyInjection.h │ │ │ ├── NSObject+TyphoonIntrospectionUtils.h │ │ │ ├── NSValue+TCFUnwrapValues.h │ │ │ ├── OCLogTemplate.h │ │ │ ├── Typhoon.h │ │ │ ├── TyphoonAbstractDetachableComponentFactoryPostProcessor.h │ │ │ ├── TyphoonAbstractInjection.h │ │ │ ├── TyphoonAssembly+TyphoonAssemblyFriend.h │ │ │ ├── TyphoonAssembly.h │ │ │ ├── TyphoonAssemblyAdviser.h │ │ │ ├── TyphoonAssemblyDefinitionBuilder.h │ │ │ ├── TyphoonAssemblyPropertyInjectionPostProcessor.h │ │ │ ├── TyphoonAssemblySelectorAdviser.h │ │ │ ├── TyphoonAutoInjection.h │ │ │ ├── TyphoonBlockComponentFactory.h │ │ │ ├── TyphoonBundleResource.h │ │ │ ├── TyphoonBundledImageTypeConverter.h │ │ │ ├── TyphoonCallStack.h │ │ │ ├── TyphoonCircularDependencyTerminator.h │ │ │ ├── TyphoonCollaboratingAssemblyPropertyEnumerator.h │ │ │ ├── TyphoonCollaboratingAssemblyProxy.h │ │ │ ├── TyphoonComponentFactory+InstanceBuilder.h │ │ │ ├── TyphoonComponentFactory+TyphoonDefinitionRegisterer.h │ │ │ ├── TyphoonComponentFactory.h │ │ │ ├── TyphoonComponentFactoryPostProcessor.h │ │ │ ├── TyphoonComponentPostProcessor.h │ │ │ ├── TyphoonComponentsPool.h │ │ │ ├── TyphoonConfigPostProcessor.h │ │ │ ├── TyphoonConfiguration.h │ │ │ ├── TyphoonDefinition+Infrastructure.h │ │ │ ├── TyphoonDefinition+InstanceBuilder.h │ │ │ ├── TyphoonDefinition+Option.h │ │ │ ├── TyphoonDefinition.h │ │ │ ├── TyphoonDefinitionRegisterer.h │ │ │ ├── TyphoonFactoryAutoInjectionPostProcessor.h │ │ │ ├── TyphoonFactoryDefinition.h │ │ │ ├── TyphoonFactoryPropertyInjectionPostProcessor.h │ │ │ ├── TyphoonInitialStoryboardResolver.h │ │ │ ├── TyphoonInjectedObject.h │ │ │ ├── TyphoonInjection.h │ │ │ ├── TyphoonInjectionByCollection.h │ │ │ ├── TyphoonInjectionByComponentFactory.h │ │ │ ├── TyphoonInjectionByConfig.h │ │ │ ├── TyphoonInjectionByCurrentRuntimeArguments.h │ │ │ ├── TyphoonInjectionByDictionary.h │ │ │ ├── TyphoonInjectionByFactoryReference.h │ │ │ ├── TyphoonInjectionByObjectFromString.h │ │ │ ├── TyphoonInjectionByObjectInstance.h │ │ │ ├── TyphoonInjectionByReference.h │ │ │ ├── TyphoonInjectionByRuntimeArgument.h │ │ │ ├── TyphoonInjectionByType.h │ │ │ ├── TyphoonInjectionContext.h │ │ │ ├── TyphoonInjections.h │ │ │ ├── TyphoonIntrospectionUtils.h │ │ │ ├── TyphoonJsonStyleConfiguration.h │ │ │ ├── TyphoonLinkerCategoryBugFix.h │ │ │ ├── TyphoonMatcherDefinitionFactory.h │ │ │ ├── TyphoonMethod+InstanceBuilder.h │ │ │ ├── TyphoonMethod.h │ │ │ ├── TyphoonMethodSwizzler.h │ │ │ ├── TyphoonNSNumberTypeConverter.h │ │ │ ├── TyphoonNSURLTypeConverter.h │ │ │ ├── TyphoonObjectWithCustomInjection.h │ │ │ ├── TyphoonOptionMatcher+Internal.h │ │ │ ├── TyphoonOptionMatcher.h │ │ │ ├── TyphoonOrdered.h │ │ │ ├── TyphoonParameterInjection.h │ │ │ ├── TyphoonParentReferenceHydratingPostProcessor.h │ │ │ ├── TyphoonPassThroughTypeConverter.h │ │ │ ├── TyphoonPatchObjectFactory.h │ │ │ ├── TyphoonPatcher.h │ │ │ ├── TyphoonPathResource.h │ │ │ ├── TyphoonPlistStyleConfiguration.h │ │ │ ├── TyphoonPrimitiveTypeConverter.h │ │ │ ├── TyphoonPropertyInjection.h │ │ │ ├── TyphoonPropertyStyleConfiguration.h │ │ │ ├── TyphoonReferenceDefinition.h │ │ │ ├── TyphoonResource.h │ │ │ ├── TyphoonRuntimeArguments.h │ │ │ ├── TyphoonSelector.h │ │ │ ├── TyphoonStackElement.h │ │ │ ├── TyphoonStartup.h │ │ │ ├── TyphoonStoryboard.h │ │ │ ├── TyphoonStringUtils.h │ │ │ ├── TyphoonSwizzler.h │ │ │ ├── TyphoonTestUtils.h │ │ │ ├── TyphoonTypeConverter.h │ │ │ ├── TyphoonTypeConverterRegistry.h │ │ │ ├── TyphoonTypeDescriptor.h │ │ │ ├── TyphoonUIColorTypeConverter.h │ │ │ ├── TyphoonViewControllerNibResolver.h │ │ │ ├── TyphoonWeakComponentsPool.h │ │ │ └── TyphooniOS.h │ └── Public │ │ ├── MagicalRecord │ │ ├── CoreData+MagicalRecord.h │ │ ├── MagicalImportFunctions.h │ │ ├── MagicalRecord+Actions.h │ │ ├── MagicalRecord+ErrorHandling.h │ │ ├── MagicalRecord+Options.h │ │ ├── MagicalRecord+Setup.h │ │ ├── MagicalRecord+ShorthandSupport.h │ │ ├── MagicalRecord+iCloud.h │ │ ├── MagicalRecord.h │ │ ├── MagicalRecordDeprecated.h │ │ ├── MagicalRecordLogging.h │ │ ├── MagicalRecordShorthand.h │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalAggregation.h │ │ ├── NSManagedObject+MagicalDataImport.h │ │ ├── NSManagedObject+MagicalFinders.h │ │ ├── NSManagedObject+MagicalRecord.h │ │ ├── NSManagedObject+MagicalRequests.h │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ ├── NSNumber+MagicalDataImport.h │ │ ├── NSObject+MagicalDataImport.h │ │ ├── NSPersistentStore+MagicalRecord.h │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ └── NSString+MagicalDataImport.h │ │ └── Typhoon │ │ ├── Collections+CustomInjection.h │ │ ├── NSArray+TyphoonManualEnumeration.h │ │ ├── NSDictionary+CustomInjection.h │ │ ├── NSInvocation+TCFInstanceBuilder.h │ │ ├── NSInvocation+TCFUnwrapValues.h │ │ ├── NSMethodSignature+TCFUnwrapValues.h │ │ ├── NSNullTypeConverter.h │ │ ├── NSObject+DeallocNotification.h │ │ ├── NSObject+FactoryHooks.h │ │ ├── NSObject+PropertyInjection.h │ │ ├── NSObject+TyphoonIntrospectionUtils.h │ │ ├── NSValue+TCFUnwrapValues.h │ │ ├── OCLogTemplate.h │ │ ├── Typhoon.h │ │ ├── TyphoonAbstractDetachableComponentFactoryPostProcessor.h │ │ ├── TyphoonAbstractInjection.h │ │ ├── TyphoonAssembly+TyphoonAssemblyFriend.h │ │ ├── TyphoonAssembly.h │ │ ├── TyphoonAssemblyAdviser.h │ │ ├── TyphoonAssemblyDefinitionBuilder.h │ │ ├── TyphoonAssemblyPropertyInjectionPostProcessor.h │ │ ├── TyphoonAssemblySelectorAdviser.h │ │ ├── TyphoonAutoInjection.h │ │ ├── TyphoonBlockComponentFactory.h │ │ ├── TyphoonBundleResource.h │ │ ├── TyphoonBundledImageTypeConverter.h │ │ ├── TyphoonCallStack.h │ │ ├── TyphoonCircularDependencyTerminator.h │ │ ├── TyphoonCollaboratingAssemblyPropertyEnumerator.h │ │ ├── TyphoonCollaboratingAssemblyProxy.h │ │ ├── TyphoonComponentFactory+InstanceBuilder.h │ │ ├── TyphoonComponentFactory+TyphoonDefinitionRegisterer.h │ │ ├── TyphoonComponentFactory.h │ │ ├── TyphoonComponentFactoryPostProcessor.h │ │ ├── TyphoonComponentPostProcessor.h │ │ ├── TyphoonComponentsPool.h │ │ ├── TyphoonConfigPostProcessor.h │ │ ├── TyphoonConfiguration.h │ │ ├── TyphoonDefinition+Infrastructure.h │ │ ├── TyphoonDefinition+InstanceBuilder.h │ │ ├── TyphoonDefinition+Option.h │ │ ├── TyphoonDefinition.h │ │ ├── TyphoonDefinitionRegisterer.h │ │ ├── TyphoonFactoryAutoInjectionPostProcessor.h │ │ ├── TyphoonFactoryDefinition.h │ │ ├── TyphoonFactoryPropertyInjectionPostProcessor.h │ │ ├── TyphoonInitialStoryboardResolver.h │ │ ├── TyphoonInjectedObject.h │ │ ├── TyphoonInjection.h │ │ ├── TyphoonInjectionByCollection.h │ │ ├── TyphoonInjectionByComponentFactory.h │ │ ├── TyphoonInjectionByConfig.h │ │ ├── TyphoonInjectionByCurrentRuntimeArguments.h │ │ ├── TyphoonInjectionByDictionary.h │ │ ├── TyphoonInjectionByFactoryReference.h │ │ ├── TyphoonInjectionByObjectFromString.h │ │ ├── TyphoonInjectionByObjectInstance.h │ │ ├── TyphoonInjectionByReference.h │ │ ├── TyphoonInjectionByRuntimeArgument.h │ │ ├── TyphoonInjectionByType.h │ │ ├── TyphoonInjectionContext.h │ │ ├── TyphoonInjections.h │ │ ├── TyphoonIntrospectionUtils.h │ │ ├── TyphoonJsonStyleConfiguration.h │ │ ├── TyphoonLinkerCategoryBugFix.h │ │ ├── TyphoonMatcherDefinitionFactory.h │ │ ├── TyphoonMethod+InstanceBuilder.h │ │ ├── TyphoonMethod.h │ │ ├── TyphoonMethodSwizzler.h │ │ ├── TyphoonNSNumberTypeConverter.h │ │ ├── TyphoonNSURLTypeConverter.h │ │ ├── TyphoonObjectWithCustomInjection.h │ │ ├── TyphoonOptionMatcher+Internal.h │ │ ├── TyphoonOptionMatcher.h │ │ ├── TyphoonOrdered.h │ │ ├── TyphoonParameterInjection.h │ │ ├── TyphoonParentReferenceHydratingPostProcessor.h │ │ ├── TyphoonPassThroughTypeConverter.h │ │ ├── TyphoonPatchObjectFactory.h │ │ ├── TyphoonPatcher.h │ │ ├── TyphoonPathResource.h │ │ ├── TyphoonPlistStyleConfiguration.h │ │ ├── TyphoonPrimitiveTypeConverter.h │ │ ├── TyphoonPropertyInjection.h │ │ ├── TyphoonPropertyStyleConfiguration.h │ │ ├── TyphoonReferenceDefinition.h │ │ ├── TyphoonResource.h │ │ ├── TyphoonRuntimeArguments.h │ │ ├── TyphoonSelector.h │ │ ├── TyphoonStackElement.h │ │ ├── TyphoonStartup.h │ │ ├── TyphoonStoryboard.h │ │ ├── TyphoonStringUtils.h │ │ ├── TyphoonSwizzler.h │ │ ├── TyphoonTestUtils.h │ │ ├── TyphoonTypeConverter.h │ │ ├── TyphoonTypeConverterRegistry.h │ │ ├── TyphoonTypeDescriptor.h │ │ ├── TyphoonUIColorTypeConverter.h │ │ ├── TyphoonViewControllerNibResolver.h │ │ ├── TyphoonWeakComponentsPool.h │ │ └── TyphooniOS.h ├── MagicalRecord │ ├── LICENSE │ ├── MagicalRecord │ │ ├── Categories │ │ │ ├── DataImport │ │ │ │ ├── MagicalImportFunctions.h │ │ │ │ ├── MagicalImportFunctions.m │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.h │ │ │ │ ├── NSAttributeDescription+MagicalDataImport.m │ │ │ │ ├── NSEntityDescription+MagicalDataImport.h │ │ │ │ ├── NSEntityDescription+MagicalDataImport.m │ │ │ │ ├── NSNumber+MagicalDataImport.h │ │ │ │ ├── NSNumber+MagicalDataImport.m │ │ │ │ ├── NSObject+MagicalDataImport.h │ │ │ │ ├── NSObject+MagicalDataImport.m │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.h │ │ │ │ ├── NSRelationshipDescription+MagicalDataImport.m │ │ │ │ ├── NSString+MagicalDataImport.h │ │ │ │ └── NSString+MagicalDataImport.m │ │ │ ├── NSManagedObject │ │ │ │ ├── NSManagedObject+MagicalAggregation.h │ │ │ │ ├── NSManagedObject+MagicalAggregation.m │ │ │ │ ├── NSManagedObject+MagicalDataImport.h │ │ │ │ ├── NSManagedObject+MagicalDataImport.m │ │ │ │ ├── NSManagedObject+MagicalFinders.h │ │ │ │ ├── NSManagedObject+MagicalFinders.m │ │ │ │ ├── NSManagedObject+MagicalRecord.h │ │ │ │ ├── NSManagedObject+MagicalRecord.m │ │ │ │ ├── NSManagedObject+MagicalRequests.h │ │ │ │ └── NSManagedObject+MagicalRequests.m │ │ │ ├── NSManagedObjectContext │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.h │ │ │ │ ├── NSManagedObjectContext+MagicalObserving.m │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.h │ │ │ │ ├── NSManagedObjectContext+MagicalRecord.m │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.h │ │ │ │ ├── NSManagedObjectContext+MagicalSaves.m │ │ │ │ ├── NSManagedObjectContext+MagicalThreading.h │ │ │ │ └── NSManagedObjectContext+MagicalThreading.m │ │ │ ├── NSManagedObjectModel+MagicalRecord.h │ │ │ ├── NSManagedObjectModel+MagicalRecord.m │ │ │ ├── NSPersistentStore+MagicalRecord.h │ │ │ ├── NSPersistentStore+MagicalRecord.m │ │ │ ├── NSPersistentStoreCoordinator+MagicalRecord.h │ │ │ └── NSPersistentStoreCoordinator+MagicalRecord.m │ │ ├── Core │ │ │ ├── MagicalRecord+Actions.h │ │ │ ├── MagicalRecord+Actions.m │ │ │ ├── MagicalRecord+ErrorHandling.h │ │ │ ├── MagicalRecord+ErrorHandling.m │ │ │ ├── MagicalRecord+Options.h │ │ │ ├── MagicalRecord+Options.m │ │ │ ├── MagicalRecord+Setup.h │ │ │ ├── MagicalRecord+Setup.m │ │ │ ├── MagicalRecord+ShorthandSupport.h │ │ │ ├── MagicalRecord+ShorthandSupport.m │ │ │ ├── MagicalRecord+iCloud.h │ │ │ ├── MagicalRecord+iCloud.m │ │ │ ├── MagicalRecord.h │ │ │ ├── MagicalRecord.m │ │ │ ├── MagicalRecordDeprecated.h │ │ │ ├── MagicalRecordLogging.h │ │ │ └── MagicalRecordShorthand.h │ │ └── CoreData+MagicalRecord.h │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ └── project.pbxproj ├── Target Support Files │ ├── Pods-Persons-MagicalRecord │ │ ├── Pods-Persons-MagicalRecord-Private.xcconfig │ │ ├── Pods-Persons-MagicalRecord-dummy.m │ │ ├── Pods-Persons-MagicalRecord-prefix.pch │ │ └── Pods-Persons-MagicalRecord.xcconfig │ ├── Pods-Persons-Typhoon │ │ ├── Pods-Persons-Typhoon-Private.xcconfig │ │ ├── Pods-Persons-Typhoon-dummy.m │ │ ├── Pods-Persons-Typhoon-prefix.pch │ │ └── Pods-Persons-Typhoon.xcconfig │ └── Pods-Persons │ │ ├── Pods-Persons-acknowledgements.markdown │ │ ├── Pods-Persons-acknowledgements.plist │ │ ├── Pods-Persons-dummy.m │ │ ├── Pods-Persons-environment.h │ │ ├── Pods-Persons-resources.sh │ │ ├── Pods-Persons.debug.xcconfig │ │ └── Pods-Persons.release.xcconfig └── Typhoon │ ├── LICENSE │ ├── README.md │ └── Source │ ├── Configuration │ ├── ConfigPostProcessor │ │ ├── TyphoonConfigPostProcessor.h │ │ ├── TyphoonConfigPostProcessor.m │ │ └── TyphoonConfiguration │ │ │ ├── TyphoonConfiguration.h │ │ │ ├── TyphoonJsonStyleConfiguration.h │ │ │ ├── TyphoonJsonStyleConfiguration.m │ │ │ ├── TyphoonPlistStyleConfiguration.h │ │ │ ├── TyphoonPlistStyleConfiguration.m │ │ │ ├── TyphoonPropertyStyleConfiguration.h │ │ │ └── TyphoonPropertyStyleConfiguration.m │ ├── DefinitionOptionConfiguration │ │ ├── Factory │ │ │ ├── TyphoonMatcherDefinitionFactory.h │ │ │ ├── TyphoonMatcherDefinitionFactory.m │ │ │ └── TyphoonOptionMatcher+Internal.h │ │ ├── TyphoonDefinition+Option.h │ │ ├── TyphoonDefinition+Option.m │ │ ├── TyphoonOptionMatcher.h │ │ └── TyphoonOptionMatcher.m │ ├── Resource │ │ ├── TyphoonBundleResource.h │ │ ├── TyphoonBundleResource.m │ │ ├── TyphoonPathResource.h │ │ ├── TyphoonPathResource.m │ │ └── TyphoonResource.h │ ├── Startup │ │ ├── TyphoonStartup.h │ │ └── TyphoonStartup.m │ ├── TyphoonAbstractDetachableComponentFactoryPostProcessor.h │ ├── TyphoonAbstractDetachableComponentFactoryPostProcessor.m │ ├── TyphoonComponentFactoryPostProcessor.h │ ├── TyphoonComponentPostProcessor.h │ └── TyphoonOrdered.h │ ├── Definition │ ├── AutoInjection │ │ ├── TyphoonAutoInjection.h │ │ ├── TyphoonFactoryAutoInjectionPostProcessor.h │ │ ├── TyphoonFactoryAutoInjectionPostProcessor.m │ │ ├── TyphoonInjectedObject.h │ │ └── TyphoonInjectedObject.m │ ├── Injections │ │ ├── TyphoonAbstractInjection.h │ │ ├── TyphoonAbstractInjection.m │ │ ├── TyphoonInjection.h │ │ ├── TyphoonInjectionByCollection.h │ │ ├── TyphoonInjectionByCollection.m │ │ ├── TyphoonInjectionByComponentFactory.h │ │ ├── TyphoonInjectionByComponentFactory.m │ │ ├── TyphoonInjectionByConfig.h │ │ ├── TyphoonInjectionByConfig.m │ │ ├── TyphoonInjectionByCurrentRuntimeArguments.h │ │ ├── TyphoonInjectionByCurrentRuntimeArguments.m │ │ ├── TyphoonInjectionByDictionary.h │ │ ├── TyphoonInjectionByDictionary.m │ │ ├── TyphoonInjectionByFactoryReference.h │ │ ├── TyphoonInjectionByFactoryReference.m │ │ ├── TyphoonInjectionByObjectFromString.h │ │ ├── TyphoonInjectionByObjectFromString.m │ │ ├── TyphoonInjectionByObjectInstance.h │ │ ├── TyphoonInjectionByObjectInstance.m │ │ ├── TyphoonInjectionByReference.h │ │ ├── TyphoonInjectionByReference.m │ │ ├── TyphoonInjectionByRuntimeArgument.h │ │ ├── TyphoonInjectionByRuntimeArgument.m │ │ ├── TyphoonInjectionByType.h │ │ ├── TyphoonInjectionByType.m │ │ ├── TyphoonInjectionContext.h │ │ ├── TyphoonInjectionContext.m │ │ ├── TyphoonInjections.h │ │ ├── TyphoonInjections.m │ │ ├── TyphoonParameterInjection.h │ │ └── TyphoonPropertyInjection.h │ ├── Internal │ │ ├── Collections+CustomInjection.h │ │ ├── Collections+CustomInjection.m │ │ ├── NSDictionary+CustomInjection.h │ │ ├── NSDictionary+CustomInjection.m │ │ ├── TyphoonDefinition+Infrastructure.h │ │ ├── TyphoonDefinition+Infrastructure.m │ │ ├── TyphoonDefinition+InstanceBuilder.h │ │ ├── TyphoonDefinition+InstanceBuilder.m │ │ ├── TyphoonFactoryDefinition.h │ │ ├── TyphoonFactoryDefinition.m │ │ ├── TyphoonObjectWithCustomInjection.h │ │ ├── TyphoonReferenceDefinition.h │ │ └── TyphoonReferenceDefinition.m │ ├── Method │ │ ├── Internal │ │ │ ├── TyphoonMethod+InstanceBuilder.h │ │ │ └── TyphoonMethod+InstanceBuilder.m │ │ ├── TyphoonMethod.h │ │ └── TyphoonMethod.m │ ├── TyphoonDefinition.h │ └── TyphoonDefinition.m │ ├── Factory │ ├── Block │ │ ├── TyphoonAssembly+TyphoonAssemblyFriend.h │ │ ├── TyphoonAssembly.h │ │ ├── TyphoonAssembly.m │ │ ├── TyphoonAssemblyAdviser.h │ │ ├── TyphoonAssemblyAdviser.m │ │ ├── TyphoonAssemblyDefinitionBuilder.h │ │ ├── TyphoonAssemblyDefinitionBuilder.m │ │ ├── TyphoonAssemblyPropertyInjectionPostProcessor.h │ │ ├── TyphoonAssemblyPropertyInjectionPostProcessor.m │ │ ├── TyphoonAssemblySelectorAdviser.h │ │ ├── TyphoonAssemblySelectorAdviser.m │ │ ├── TyphoonBlockComponentFactory.h │ │ ├── TyphoonBlockComponentFactory.m │ │ ├── TyphoonCircularDependencyTerminator.h │ │ ├── TyphoonCircularDependencyTerminator.m │ │ ├── TyphoonCollaboratingAssemblyPropertyEnumerator.h │ │ ├── TyphoonCollaboratingAssemblyPropertyEnumerator.m │ │ ├── TyphoonCollaboratingAssemblyProxy.h │ │ ├── TyphoonCollaboratingAssemblyProxy.m │ │ ├── TyphoonRuntimeArguments.h │ │ └── TyphoonRuntimeArguments.m │ ├── Hooks │ │ └── NSObject+FactoryHooks.h │ ├── Internal │ │ ├── NSInvocation+TCFInstanceBuilder.h │ │ ├── NSInvocation+TCFInstanceBuilder.m │ │ ├── NSInvocation+TCFUnwrapValues.h │ │ ├── NSInvocation+TCFUnwrapValues.m │ │ ├── NSMethodSignature+TCFUnwrapValues.h │ │ ├── NSMethodSignature+TCFUnwrapValues.m │ │ ├── NSValue+TCFUnwrapValues.h │ │ ├── NSValue+TCFUnwrapValues.m │ │ ├── TyphoonCallStack.h │ │ ├── TyphoonCallStack.m │ │ ├── TyphoonComponentFactory+InstanceBuilder.h │ │ ├── TyphoonComponentFactory+InstanceBuilder.m │ │ ├── TyphoonComponentFactory+TyphoonDefinitionRegisterer.h │ │ ├── TyphoonFactoryPropertyInjectionPostProcessor.h │ │ ├── TyphoonFactoryPropertyInjectionPostProcessor.m │ │ ├── TyphoonParentReferenceHydratingPostProcessor.h │ │ ├── TyphoonParentReferenceHydratingPostProcessor.m │ │ ├── TyphoonStackElement.h │ │ └── TyphoonStackElement.m │ ├── Pool │ │ ├── TyphoonComponentsPool.h │ │ ├── TyphoonWeakComponentsPool.h │ │ └── TyphoonWeakComponentsPool.m │ ├── TyphoonComponentFactory.h │ ├── TyphoonComponentFactory.m │ ├── TyphoonDefinitionRegisterer.h │ └── TyphoonDefinitionRegisterer.m │ ├── Test │ ├── Patcher │ │ ├── TyphoonPatchObjectFactory.h │ │ ├── TyphoonPatchObjectFactory.m │ │ ├── TyphoonPatcher.h │ │ └── TyphoonPatcher.m │ └── TestUtils │ │ ├── TyphoonTestUtils.h │ │ └── TyphoonTestUtils.m │ ├── TypeConversion │ ├── Converters │ │ ├── NSNullTypeConverter.h │ │ ├── NSNullTypeConverter.m │ │ ├── TyphoonNSNumberTypeConverter.h │ │ ├── TyphoonNSNumberTypeConverter.m │ │ ├── TyphoonNSURLTypeConverter.h │ │ ├── TyphoonNSURLTypeConverter.m │ │ ├── TyphoonPassThroughTypeConverter.h │ │ ├── TyphoonPassThroughTypeConverter.m │ │ ├── TyphoonPrimitiveTypeConverter.h │ │ └── TyphoonPrimitiveTypeConverter.m │ ├── TyphoonTypeConverter.h │ ├── TyphoonTypeConverterRegistry.h │ ├── TyphoonTypeConverterRegistry.m │ ├── TyphoonTypeDescriptor.h │ └── TyphoonTypeDescriptor.m │ ├── Typhoon.h │ ├── Utils │ ├── NSArray+TyphoonManualEnumeration.h │ ├── NSArray+TyphoonManualEnumeration.m │ ├── NSObject+DeallocNotification.h │ ├── NSObject+DeallocNotification.m │ ├── NSObject+PropertyInjection.h │ ├── NSObject+PropertyInjection.m │ ├── NSObject+TyphoonIntrospectionUtils.h │ ├── NSObject+TyphoonIntrospectionUtils.m │ ├── Swizzle │ │ ├── TyphoonMethodSwizzler.h │ │ ├── TyphoonSwizzler.h │ │ └── TyphoonSwizzler.m │ ├── TyphoonIntrospectionUtils.h │ ├── TyphoonIntrospectionUtils.m │ ├── TyphoonLinkerCategoryBugFix.h │ ├── TyphoonSelector.h │ ├── TyphoonSelector.m │ └── TyphoonStringUtils.h │ ├── Vendor │ └── OCLogTemplate │ │ └── OCLogTemplate.h │ └── ios │ ├── Configuration │ └── Resolver │ │ ├── TyphoonViewControllerNibResolver.h │ │ └── TyphoonViewControllerNibResolver.m │ ├── Storyboard │ ├── TyphoonInitialStoryboardResolver.h │ ├── TyphoonInitialStoryboardResolver.m │ ├── TyphoonStoryboard.h │ └── TyphoonStoryboard.m │ ├── TypeConversion │ └── Converters │ │ ├── TyphoonBundledImageTypeConverter.h │ │ ├── TyphoonBundledImageTypeConverter.m │ │ ├── TyphoonUIColorTypeConverter.h │ │ └── TyphoonUIColorTypeConverter.m │ └── TyphooniOS.h └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | .swp 3 | -------------------------------------------------------------------------------- /Persons-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons-Bridging-Header.h -------------------------------------------------------------------------------- /Persons.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Persons.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Persons.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Persons.xcworkspace/xcshareddata/Persons.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons.xcworkspace/xcshareddata/Persons.xccheckout -------------------------------------------------------------------------------- /Persons/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/AppDelegate.swift -------------------------------------------------------------------------------- /Persons/AppDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/AppDependencies.swift -------------------------------------------------------------------------------- /Persons/ApplicationAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/ApplicationAssembly.swift -------------------------------------------------------------------------------- /Persons/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Persons/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Persons/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Info.plist -------------------------------------------------------------------------------- /Persons/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Main.storyboard -------------------------------------------------------------------------------- /Persons/ManagedPerson.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/ManagedPerson.swift -------------------------------------------------------------------------------- /Persons/NSDateConvenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/NSDateConvenience.swift -------------------------------------------------------------------------------- /Persons/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Person.swift -------------------------------------------------------------------------------- /Persons/PersonCoreDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonCoreDataStore.swift -------------------------------------------------------------------------------- /Persons/PersonDataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDataStore.swift -------------------------------------------------------------------------------- /Persons/PersonDetailAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailAssembly.swift -------------------------------------------------------------------------------- /Persons/PersonDetailInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailInteractor.swift -------------------------------------------------------------------------------- /Persons/PersonDetailInteractorIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailInteractorIO.swift -------------------------------------------------------------------------------- /Persons/PersonDetailPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailPresenter.swift -------------------------------------------------------------------------------- /Persons/PersonDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailViewController.swift -------------------------------------------------------------------------------- /Persons/PersonDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailViewModel.swift -------------------------------------------------------------------------------- /Persons/PersonDetailWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonDetailWireframe.swift -------------------------------------------------------------------------------- /Persons/PersonListAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListAssembly.swift -------------------------------------------------------------------------------- /Persons/PersonListDisplayData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListDisplayData.swift -------------------------------------------------------------------------------- /Persons/PersonListDisplaySection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListDisplaySection.swift -------------------------------------------------------------------------------- /Persons/PersonListInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListInteractor.swift -------------------------------------------------------------------------------- /Persons/PersonListInteractorIO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListInteractorIO.swift -------------------------------------------------------------------------------- /Persons/PersonListPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListPresenter.swift -------------------------------------------------------------------------------- /Persons/PersonListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListViewController.swift -------------------------------------------------------------------------------- /Persons/PersonListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListViewModel.swift -------------------------------------------------------------------------------- /Persons/PersonListWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/PersonListWireframe.swift -------------------------------------------------------------------------------- /Persons/Persons.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Persons.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Persons/Persons.xcdatamodeld/Persons.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/Persons.xcdatamodeld/Persons.xcdatamodel/contents -------------------------------------------------------------------------------- /Persons/RootWireframe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Persons/RootWireframe.swift -------------------------------------------------------------------------------- /PersonsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/PersonsTests/Info.plist -------------------------------------------------------------------------------- /PersonsTests/PersonsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/PersonsTests/PersonsTests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecordDeprecated.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecordDeprecated.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecordLogging.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecordLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/MagicalRecord/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/Collections+CustomInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/Collections+CustomInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSArray+TyphoonManualEnumeration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSArray+TyphoonManualEnumeration.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSDictionary+CustomInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSInvocation+TCFInstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSInvocation+TCFUnwrapValues.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSMethodSignature+TCFUnwrapValues.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSNullTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/NSNullTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSObject+DeallocNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSObject+DeallocNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSObject+FactoryHooks.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSObject+PropertyInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSObject+PropertyInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSObject+TyphoonIntrospectionUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSObject+TyphoonIntrospectionUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/NSValue+TCFUnwrapValues.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/OCLogTemplate.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Vendor/OCLogTemplate/OCLogTemplate.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/Typhoon.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Typhoon.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAbstractDetachableComponentFactoryPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAbstractInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAssembly+TyphoonAssemblyFriend.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAssembly.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssembly.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAssemblyAdviser.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAssemblyDefinitionBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAssemblyPropertyInjectionPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAssemblySelectorAdviser.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonAutoInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonBlockComponentFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonBundleResource.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonBundledImageTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonCallStack.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonCallStack.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonCircularDependencyTerminator.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonCollaboratingAssemblyPropertyEnumerator.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonCollaboratingAssemblyProxy.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonComponentFactory+InstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonComponentFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/TyphoonComponentFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonComponentFactoryPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonComponentPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonComponentsPool.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Pool/TyphoonComponentsPool.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonConfigPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonDefinition+Infrastructure.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonDefinition+InstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonDefinition+Option.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/TyphoonDefinition.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonDefinitionRegisterer.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/TyphoonDefinitionRegisterer.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonFactoryAutoInjectionPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonFactoryDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonFactoryPropertyInjectionPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInitialStoryboardResolver.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/Storyboard/TyphoonInitialStoryboardResolver.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByComponentFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByConfig.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByCurrentRuntimeArguments.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByFactoryReference.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByObjectFromString.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByObjectInstance.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByReference.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByRuntimeArgument.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionByType.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjectionContext.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonInjections.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjections.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonIntrospectionUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonIntrospectionUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonJsonStyleConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonLinkerCategoryBugFix.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonLinkerCategoryBugFix.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonMatcherDefinitionFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonMatcherDefinitionFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonMethod+InstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonMethod.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Method/TyphoonMethod.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonMethodSwizzler.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/Swizzle/TyphoonMethodSwizzler.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonNSNumberTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonNSURLTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonObjectWithCustomInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonOptionMatcher+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonOptionMatcher+Internal.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonOptionMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonOptionMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonOrdered.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonOrdered.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonParameterInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonParentReferenceHydratingPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPassThroughTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPatchObjectFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Test/Patcher/TyphoonPatchObjectFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Test/Patcher/TyphoonPatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPathResource.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Resource/TyphoonPathResource.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPlistStyleConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPrimitiveTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPropertyInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonPropertyStyleConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonReferenceDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonResource.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Resource/TyphoonResource.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonRuntimeArguments.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonSelector.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonSelector.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonStackElement.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonStackElement.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonStartup.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Startup/TyphoonStartup.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonStoryboard.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/Storyboard/TyphoonStoryboard.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonStringUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonStringUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonSwizzler.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/Swizzle/TyphoonSwizzler.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonTestUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Test/TestUtils/TyphoonTestUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/TyphoonTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonTypeConverterRegistry.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/TyphoonTypeConverterRegistry.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonTypeDescriptor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/TyphoonTypeDescriptor.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonUIColorTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonViewControllerNibResolver.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphoonWeakComponentsPool.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Pool/TyphoonWeakComponentsPool.h -------------------------------------------------------------------------------- /Pods/Headers/Build/Typhoon/TyphooniOS.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/TyphooniOS.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalImportFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord+Options.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecordDeprecated.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecordDeprecated.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecordLogging.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecordLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MagicalRecord/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- 1 | ../../../MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/Collections+CustomInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/Collections+CustomInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSArray+TyphoonManualEnumeration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSArray+TyphoonManualEnumeration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSDictionary+CustomInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSInvocation+TCFInstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSInvocation+TCFUnwrapValues.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSMethodSignature+TCFUnwrapValues.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSNullTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/NSNullTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSObject+DeallocNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSObject+DeallocNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSObject+FactoryHooks.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSObject+PropertyInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSObject+PropertyInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSObject+TyphoonIntrospectionUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/NSObject+TyphoonIntrospectionUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/NSValue+TCFUnwrapValues.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/OCLogTemplate.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Vendor/OCLogTemplate/OCLogTemplate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/Typhoon.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Typhoon.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAbstractDetachableComponentFactoryPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAbstractInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAssembly+TyphoonAssemblyFriend.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAssembly.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssembly.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAssemblyAdviser.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAssemblyDefinitionBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAssemblyPropertyInjectionPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAssemblySelectorAdviser.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonAutoInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonBlockComponentFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonBundleResource.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonBundledImageTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonCallStack.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonCallStack.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonCircularDependencyTerminator.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonCollaboratingAssemblyPropertyEnumerator.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonCollaboratingAssemblyProxy.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonComponentFactory+InstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonComponentFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/TyphoonComponentFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonComponentFactoryPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonComponentPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonComponentsPool.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Pool/TyphoonComponentsPool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonConfigPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonDefinition+Infrastructure.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonDefinition+InstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonDefinition+Option.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/TyphoonDefinition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonDefinitionRegisterer.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/TyphoonDefinitionRegisterer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonFactoryAutoInjectionPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonFactoryDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonFactoryPropertyInjectionPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInitialStoryboardResolver.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/Storyboard/TyphoonInitialStoryboardResolver.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByCollection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByComponentFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByConfig.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByCurrentRuntimeArguments.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByDictionary.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByFactoryReference.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByObjectFromString.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByObjectInstance.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByReference.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByRuntimeArgument.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionByType.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjectionContext.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonInjections.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonInjections.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonIntrospectionUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonIntrospectionUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonJsonStyleConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonLinkerCategoryBugFix.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonLinkerCategoryBugFix.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonMatcherDefinitionFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonMatcherDefinitionFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonMethod+InstanceBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonMethod.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Method/TyphoonMethod.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonMethodSwizzler.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/Swizzle/TyphoonMethodSwizzler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonNSNumberTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonNSURLTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonObjectWithCustomInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonOptionMatcher+Internal.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonOptionMatcher+Internal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonOptionMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonOptionMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonOrdered.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/TyphoonOrdered.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonParameterInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonParentReferenceHydratingPostProcessor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPassThroughTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPatchObjectFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Test/Patcher/TyphoonPatchObjectFactory.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Test/Patcher/TyphoonPatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPathResource.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Resource/TyphoonPathResource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPlistStyleConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPrimitiveTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPropertyInjection.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonPropertyStyleConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonReferenceDefinition.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonResource.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Resource/TyphoonResource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonRuntimeArguments.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonSelector.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonSelector.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonStackElement.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Internal/TyphoonStackElement.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonStartup.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Configuration/Startup/TyphoonStartup.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonStoryboard.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/Storyboard/TyphoonStoryboard.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonStringUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/TyphoonStringUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonSwizzler.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Utils/Swizzle/TyphoonSwizzler.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonTestUtils.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Test/TestUtils/TyphoonTestUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/TyphoonTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonTypeConverterRegistry.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/TyphoonTypeConverterRegistry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonTypeDescriptor.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/TypeConversion/TyphoonTypeDescriptor.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonUIColorTypeConverter.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonViewControllerNibResolver.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphoonWeakComponentsPool.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/Factory/Pool/TyphoonWeakComponentsPool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Typhoon/TyphooniOS.h: -------------------------------------------------------------------------------- 1 | ../../../Typhoon/Source/ios/TyphooniOS.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/LICENSE -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/MagicalImportFunctions.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSAttributeDescription+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSEntityDescription+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSNumber+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSObject+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSRelationshipDescription+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/DataImport/NSString+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalAggregation.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalDataImport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalFinders.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRecord.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObject/NSManagedObject+MagicalRequests.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalObserving.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalRecord.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalSaves.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectContext/NSManagedObjectContext+MagicalThreading.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSManagedObjectModel+MagicalRecord.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStore+MagicalRecord.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Categories/NSPersistentStoreCoordinator+MagicalRecord.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Actions.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ErrorHandling.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Options.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+Setup.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+ShorthandSupport.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord+iCloud.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecord.m -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecordDeprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecordDeprecated.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecordLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecordLogging.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/Core/MagicalRecordShorthand.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/MagicalRecord/CoreData+MagicalRecord.h -------------------------------------------------------------------------------- /Pods/MagicalRecord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/MagicalRecord/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-MagicalRecord/Pods-Persons-MagicalRecord.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_PERSONS_MAGICALRECORD_OTHER_LDFLAGS = -framework "CoreData" -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons-Typhoon/Pods-Persons-Typhoon.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Persons/Pods-Persons.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Target Support Files/Pods-Persons/Pods-Persons.release.xcconfig -------------------------------------------------------------------------------- /Pods/Typhoon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/LICENSE -------------------------------------------------------------------------------- /Pods/Typhoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/README.md -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfigPostProcessor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonConfiguration.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonJsonStyleConfiguration.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPlistStyleConfiguration.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/ConfigPostProcessor/TyphoonConfiguration/TyphoonPropertyStyleConfiguration.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonMatcherDefinitionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonMatcherDefinitionFactory.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonMatcherDefinitionFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonMatcherDefinitionFactory.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonOptionMatcher+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/Factory/TyphoonOptionMatcher+Internal.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonDefinition+Option.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonOptionMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonOptionMatcher.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonOptionMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/DefinitionOptionConfiguration/TyphoonOptionMatcher.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Resource/TyphoonBundleResource.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Resource/TyphoonPathResource.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Resource/TyphoonResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Resource/TyphoonResource.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/Startup/TyphoonStartup.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/TyphoonAbstractDetachableComponentFactoryPostProcessor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/TyphoonComponentFactoryPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/TyphoonComponentPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Configuration/TyphoonOrdered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Configuration/TyphoonOrdered.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonAutoInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonFactoryAutoInjectionPostProcessor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/AutoInjection/TyphoonInjectedObject.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonAbstractInjection.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCollection.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByComponentFactory.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByConfig.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByCurrentRuntimeArguments.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByDictionary.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByFactoryReference.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectFromString.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByObjectInstance.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByReference.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByRuntimeArgument.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionByType.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjectionContext.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonInjections.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonParameterInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Injections/TyphoonPropertyInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/Collections+CustomInjection.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/NSDictionary+CustomInjection.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+Infrastructure.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonDefinition+InstanceBuilder.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonFactoryDefinition.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonObjectWithCustomInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Internal/TyphoonReferenceDefinition.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Method/Internal/TyphoonMethod+InstanceBuilder.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Method/TyphoonMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/Method/TyphoonMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/Method/TyphoonMethod.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/TyphoonDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/TyphoonDefinition.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Definition/TyphoonDefinition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Definition/TyphoonDefinition.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly+TyphoonAssemblyFriend.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssembly.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyAdviser.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyDefinitionBuilder.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblyPropertyInjectionPostProcessor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonAssemblySelectorAdviser.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonBlockComponentFactory.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonCircularDependencyTerminator.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyPropertyEnumerator.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonCollaboratingAssemblyProxy.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Block/TyphoonRuntimeArguments.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Hooks/NSObject+FactoryHooks.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSInvocation+TCFUnwrapValues.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSMethodSignature+TCFUnwrapValues.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/NSValue+TCFUnwrapValues.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonCallStack.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+InstanceBuilder.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonComponentFactory+TyphoonDefinitionRegisterer.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonFactoryPropertyInjectionPostProcessor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonParentReferenceHydratingPostProcessor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonStackElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonStackElement.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Internal/TyphoonStackElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Internal/TyphoonStackElement.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Pool/TyphoonComponentsPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Pool/TyphoonComponentsPool.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Pool/TyphoonWeakComponentsPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Pool/TyphoonWeakComponentsPool.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/Pool/TyphoonWeakComponentsPool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/Pool/TyphoonWeakComponentsPool.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/TyphoonComponentFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/TyphoonComponentFactory.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/TyphoonComponentFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/TyphoonComponentFactory.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/TyphoonDefinitionRegisterer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/TyphoonDefinitionRegisterer.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Factory/TyphoonDefinitionRegisterer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Factory/TyphoonDefinitionRegisterer.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Test/Patcher/TyphoonPatchObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Test/Patcher/TyphoonPatchObjectFactory.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Test/Patcher/TyphoonPatchObjectFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Test/Patcher/TyphoonPatchObjectFactory.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Test/Patcher/TyphoonPatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Test/Patcher/TyphoonPatcher.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Test/Patcher/TyphoonPatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Test/Patcher/TyphoonPatcher.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Test/TestUtils/TyphoonTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Test/TestUtils/TyphoonTestUtils.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Test/TestUtils/TyphoonTestUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Test/TestUtils/TyphoonTestUtils.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/NSNullTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/NSNullTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/NSNullTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/NSNullTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSNumberTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonNSURLTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPassThroughTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/Converters/TyphoonPrimitiveTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/TyphoonTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/TyphoonTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/TyphoonTypeConverterRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/TyphoonTypeConverterRegistry.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/TyphoonTypeConverterRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/TyphoonTypeConverterRegistry.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/TyphoonTypeDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/TyphoonTypeDescriptor.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/TypeConversion/TyphoonTypeDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/TypeConversion/TyphoonTypeDescriptor.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Typhoon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Typhoon.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSArray+TyphoonManualEnumeration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSArray+TyphoonManualEnumeration.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSArray+TyphoonManualEnumeration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSArray+TyphoonManualEnumeration.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSObject+DeallocNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSObject+DeallocNotification.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSObject+DeallocNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSObject+DeallocNotification.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSObject+PropertyInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSObject+PropertyInjection.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSObject+PropertyInjection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSObject+PropertyInjection.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSObject+TyphoonIntrospectionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSObject+TyphoonIntrospectionUtils.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/NSObject+TyphoonIntrospectionUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/NSObject+TyphoonIntrospectionUtils.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/Swizzle/TyphoonMethodSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/Swizzle/TyphoonMethodSwizzler.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/Swizzle/TyphoonSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/Swizzle/TyphoonSwizzler.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/Swizzle/TyphoonSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/Swizzle/TyphoonSwizzler.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/TyphoonIntrospectionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/TyphoonIntrospectionUtils.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/TyphoonIntrospectionUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/TyphoonIntrospectionUtils.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/TyphoonLinkerCategoryBugFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/TyphoonLinkerCategoryBugFix.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/TyphoonSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/TyphoonSelector.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/TyphoonSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/TyphoonSelector.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Utils/TyphoonStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Utils/TyphoonStringUtils.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/Vendor/OCLogTemplate/OCLogTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/Vendor/OCLogTemplate/OCLogTemplate.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/Configuration/Resolver/TyphoonViewControllerNibResolver.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/Storyboard/TyphoonInitialStoryboardResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/Storyboard/TyphoonInitialStoryboardResolver.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/Storyboard/TyphoonInitialStoryboardResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/Storyboard/TyphoonInitialStoryboardResolver.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/Storyboard/TyphoonStoryboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/Storyboard/TyphoonStoryboard.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/Storyboard/TyphoonStoryboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/Storyboard/TyphoonStoryboard.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonBundledImageTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.h -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/TypeConversion/Converters/TyphoonUIColorTypeConverter.m -------------------------------------------------------------------------------- /Pods/Typhoon/Source/ios/TyphooniOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/Pods/Typhoon/Source/ios/TyphooniOS.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianwr/VIPER-Persons/HEAD/README.md --------------------------------------------------------------------------------