├── .gitignore ├── .swift-version ├── AlamofireCoreData.podspec ├── AlamofireCoreData.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── Manu.xcuserdatad │ └── xcschemes │ │ ├── AlamofireCoreData.xcscheme │ │ ├── AlamofireCoreDataTests.xcscheme │ │ └── xcschememanagement.plist │ └── Manue.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AlamofireCoreData.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── AlamofireCoreData ├── AlamofireCoreData.h ├── Info.plist └── source │ ├── alamofire+coredata │ └── Alamofire+CoreData.swift │ └── insertable │ ├── Insertable.swift │ ├── Many.swift │ ├── NSManagedObject+Insertable.swift │ └── wrapper │ ├── Operator.swift │ └── Wrapper.swift ├── AlamofireCoreDataTests ├── Info.plist ├── InsertableTests.swift ├── WrapperTests.swift ├── helpers │ ├── Constants.swift │ ├── NSPersistentContainer+Memory.swift │ └── XCTest+OHHTTPStubs.swift ├── model │ ├── LoginResponse.swift │ ├── SampleWrapper.swift │ ├── User+CoreDataClass.swift │ ├── User+CoreDataProperties.swift │ └── model.xcdatamodeld │ │ └── model.xcdatamodel │ │ └── contents └── nsmangedobject_serializers │ └── NSManagedObjectTests.swift ├── CHANGELOG.md ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── Groot │ ├── Groot │ │ ├── GRTError.h │ │ ├── GRTError.m │ │ ├── GRTJSONSerialization.h │ │ ├── GRTJSONSerialization.m │ │ ├── GRTManagedStore.h │ │ ├── GRTManagedStore.m │ │ ├── Groot.h │ │ ├── Groot.swift │ │ ├── NSValueTransformer+Groot.h │ │ ├── NSValueTransformer+Groot.m │ │ ├── Private │ │ │ ├── GRTCompositeUniquingSerializationStrategy.h │ │ │ ├── GRTCompositeUniquingSerializationStrategy.m │ │ │ ├── GRTInsertSerializationStrategy.h │ │ │ ├── GRTInsertSerializationStrategy.m │ │ │ ├── GRTManagedObjectSerializer.h │ │ │ ├── GRTManagedObjectSerializer.m │ │ │ ├── GRTSerializationStrategy.h │ │ │ ├── GRTSerializationStrategy.m │ │ │ ├── GRTUniquingSerializationStrategy.h │ │ │ ├── GRTUniquingSerializationStrategy.m │ │ │ ├── GRTValueTransformer.h │ │ │ ├── GRTValueTransformer.m │ │ │ ├── NSArray+DictionaryTransformer.h │ │ │ ├── NSArray+DictionaryTransformer.m │ │ │ ├── NSAttributeDescription+Groot.h │ │ │ ├── NSAttributeDescription+Groot.m │ │ │ ├── NSEntityDescription+Groot.h │ │ │ ├── NSEntityDescription+Groot.m │ │ │ ├── NSManagedObject+Groot.h │ │ │ ├── NSManagedObject+Groot.m │ │ │ ├── NSPropertyDescription+Groot.h │ │ │ └── NSPropertyDescription+Groot.m │ │ └── ValueTransformer+Groot.swift │ ├── LICENSE.md │ └── README.md ├── Manifest.lock ├── OHHTTPStubs │ ├── LICENSE │ ├── OHHTTPStubs │ │ └── Sources │ │ │ ├── Compatibility.h │ │ │ ├── JSON │ │ │ ├── OHHTTPStubsResponse+JSON.h │ │ │ └── OHHTTPStubsResponse+JSON.m │ │ │ ├── NSURLSession │ │ │ ├── NSURLRequest+HTTPBodyTesting.h │ │ │ ├── NSURLRequest+HTTPBodyTesting.m │ │ │ ├── OHHTTPStubs+NSURLSessionConfiguration.m │ │ │ ├── OHHTTPStubsMethodSwizzling.h │ │ │ └── OHHTTPStubsMethodSwizzling.m │ │ │ ├── OHHTTPStubs.h │ │ │ ├── OHHTTPStubs.m │ │ │ ├── OHHTTPStubsResponse.h │ │ │ ├── OHHTTPStubsResponse.m │ │ │ ├── OHPathHelpers │ │ │ ├── OHPathHelpers.h │ │ │ └── OHPathHelpers.m │ │ │ └── Swift │ │ │ └── OHHTTPStubsSwift.swift │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Manue.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── Groot.xcscheme │ │ ├── OHHTTPStubs.xcscheme │ │ ├── Pods-abstract_target-AlamofireCoreData.xcscheme │ │ ├── Pods-abstract_target-AlamofireCoreDataTests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Alamofire │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire.modulemap │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── Groot │ ├── Groot-dummy.m │ ├── Groot-prefix.pch │ ├── Groot.modulemap │ ├── Groot.xcconfig │ └── Info.plist │ ├── OHHTTPStubs │ ├── Info.plist │ ├── OHHTTPStubs-dummy.m │ ├── OHHTTPStubs-prefix.pch │ ├── OHHTTPStubs.modulemap │ └── OHHTTPStubs.xcconfig │ ├── Pods-abstract_target-AlamofireCoreData │ ├── Info.plist │ ├── Pods-abstract_target-AlamofireCoreData-dummy.m │ └── Pods-abstract_target-AlamofireCoreData.modulemap │ └── Pods-abstract_target-AlamofireCoreDataTests │ ├── Info.plist │ ├── Pods-abstract_target-AlamofireCoreDataTests-dummy.m │ └── Pods-abstract_target-AlamofireCoreDataTests.modulemap └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Pods/Target Support Files 2 | AlamofireCoreData.xcworkspace/xcuserdata 3 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /AlamofireCoreData.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.podspec -------------------------------------------------------------------------------- /AlamofireCoreData.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AlamofireCoreData.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AlamofireCoreData.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/AlamofireCoreData.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/AlamofireCoreData.xcscheme -------------------------------------------------------------------------------- /AlamofireCoreData.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/AlamofireCoreDataTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/AlamofireCoreDataTests.xcscheme -------------------------------------------------------------------------------- /AlamofireCoreData.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcodeproj/xcuserdata/Manu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AlamofireCoreData.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AlamofireCoreData.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AlamofireCoreData.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AlamofireCoreData/AlamofireCoreData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/AlamofireCoreData.h -------------------------------------------------------------------------------- /AlamofireCoreData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/Info.plist -------------------------------------------------------------------------------- /AlamofireCoreData/source/alamofire+coredata/Alamofire+CoreData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/source/alamofire+coredata/Alamofire+CoreData.swift -------------------------------------------------------------------------------- /AlamofireCoreData/source/insertable/Insertable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/source/insertable/Insertable.swift -------------------------------------------------------------------------------- /AlamofireCoreData/source/insertable/Many.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/source/insertable/Many.swift -------------------------------------------------------------------------------- /AlamofireCoreData/source/insertable/NSManagedObject+Insertable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/source/insertable/NSManagedObject+Insertable.swift -------------------------------------------------------------------------------- /AlamofireCoreData/source/insertable/wrapper/Operator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/source/insertable/wrapper/Operator.swift -------------------------------------------------------------------------------- /AlamofireCoreData/source/insertable/wrapper/Wrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreData/source/insertable/wrapper/Wrapper.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/Info.plist -------------------------------------------------------------------------------- /AlamofireCoreDataTests/InsertableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/InsertableTests.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/WrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/WrapperTests.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/helpers/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/helpers/Constants.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/helpers/NSPersistentContainer+Memory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/helpers/NSPersistentContainer+Memory.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/helpers/XCTest+OHHTTPStubs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/helpers/XCTest+OHHTTPStubs.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/model/LoginResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/model/LoginResponse.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/model/SampleWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/model/SampleWrapper.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/model/User+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/model/User+CoreDataClass.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/model/User+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/model/User+CoreDataProperties.swift -------------------------------------------------------------------------------- /AlamofireCoreDataTests/model/model.xcdatamodeld/model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/model/model.xcdatamodeld/model.xcdatamodel/contents -------------------------------------------------------------------------------- /AlamofireCoreDataTests/nsmangedobject_serializers/NSManagedObjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/AlamofireCoreDataTests/nsmangedobject_serializers/NSManagedObjectTests.swift -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Groot/Groot/GRTError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/GRTError.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/GRTError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/GRTError.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/GRTJSONSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/GRTJSONSerialization.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/GRTJSONSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/GRTJSONSerialization.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/GRTManagedStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/GRTManagedStore.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/GRTManagedStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/GRTManagedStore.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Groot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Groot.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Groot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Groot.swift -------------------------------------------------------------------------------- /Pods/Groot/Groot/NSValueTransformer+Groot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/NSValueTransformer+Groot.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/NSValueTransformer+Groot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/NSValueTransformer+Groot.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTCompositeUniquingSerializationStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTCompositeUniquingSerializationStrategy.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTCompositeUniquingSerializationStrategy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTCompositeUniquingSerializationStrategy.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTInsertSerializationStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTInsertSerializationStrategy.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTInsertSerializationStrategy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTInsertSerializationStrategy.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTManagedObjectSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTManagedObjectSerializer.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTManagedObjectSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTManagedObjectSerializer.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTSerializationStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTSerializationStrategy.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTSerializationStrategy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTSerializationStrategy.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTUniquingSerializationStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTUniquingSerializationStrategy.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTUniquingSerializationStrategy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTUniquingSerializationStrategy.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTValueTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTValueTransformer.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/GRTValueTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/GRTValueTransformer.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSArray+DictionaryTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSArray+DictionaryTransformer.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSArray+DictionaryTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSArray+DictionaryTransformer.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSAttributeDescription+Groot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSAttributeDescription+Groot.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSAttributeDescription+Groot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSAttributeDescription+Groot.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSEntityDescription+Groot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSEntityDescription+Groot.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSEntityDescription+Groot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSEntityDescription+Groot.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSManagedObject+Groot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSManagedObject+Groot.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSManagedObject+Groot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSManagedObject+Groot.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSPropertyDescription+Groot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSPropertyDescription+Groot.h -------------------------------------------------------------------------------- /Pods/Groot/Groot/Private/NSPropertyDescription+Groot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/Private/NSPropertyDescription+Groot.m -------------------------------------------------------------------------------- /Pods/Groot/Groot/ValueTransformer+Groot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/Groot/ValueTransformer+Groot.swift -------------------------------------------------------------------------------- /Pods/Groot/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/LICENSE.md -------------------------------------------------------------------------------- /Pods/Groot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Groot/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/LICENSE -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/Compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Compatibility.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubs+NSURLSessionConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubs+NSURLSessionConfiguration.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubs.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHHTTPStubsResponse.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift -------------------------------------------------------------------------------- /Pods/OHHTTPStubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/OHHTTPStubs/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Groot.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Groot.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/OHHTTPStubs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/OHHTTPStubs.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Pods-abstract_target-AlamofireCoreData.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Pods-abstract_target-AlamofireCoreData.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Pods-abstract_target-AlamofireCoreDataTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/Pods-abstract_target-AlamofireCoreDataTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Pods.xcodeproj/xcuserdata/Manue.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Groot/Groot-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Groot/Groot-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Groot/Groot-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Groot/Groot-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Groot/Groot.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Groot/Groot.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Groot/Groot.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Groot/Groot.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Groot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Groot/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/OHHTTPStubs/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-abstract_target-AlamofireCoreData/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Pods-abstract_target-AlamofireCoreData/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-abstract_target-AlamofireCoreData/Pods-abstract_target-AlamofireCoreData-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Pods-abstract_target-AlamofireCoreData/Pods-abstract_target-AlamofireCoreData-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-abstract_target-AlamofireCoreData/Pods-abstract_target-AlamofireCoreData.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Pods-abstract_target-AlamofireCoreData/Pods-abstract_target-AlamofireCoreData.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-abstract_target-AlamofireCoreDataTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Pods-abstract_target-AlamofireCoreDataTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-abstract_target-AlamofireCoreDataTests/Pods-abstract_target-AlamofireCoreDataTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Pods-abstract_target-AlamofireCoreDataTests/Pods-abstract_target-AlamofireCoreDataTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-abstract_target-AlamofireCoreDataTests/Pods-abstract_target-AlamofireCoreDataTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/Pods/Target Support Files/Pods-abstract_target-AlamofireCoreDataTests/Pods-abstract_target-AlamofireCoreDataTests.modulemap -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManueGE/AlamofireCoreData/HEAD/README.md --------------------------------------------------------------------------------