gitextract_xqg0idnf/ ├── .gitignore ├── DCKeyValueObjectMapping.podspec ├── KeyValueObjectMapping/ │ ├── DCArrayMapping.h │ ├── DCArrayMapping.m │ ├── DCAttributeSetter.h │ ├── DCAttributeSetter.m │ ├── DCCustomInitialize.h │ ├── DCCustomInitialize.m │ ├── DCCustomParser.h │ ├── DCCustomParser.m │ ├── DCDictionaryRearranger.h │ ├── DCDictionaryRearranger.m │ ├── DCDynamicAttribute.h │ ├── DCDynamicAttribute.m │ ├── DCGenericConverter.h │ ├── DCGenericConverter.m │ ├── DCKeyValueObjectMapping.h │ ├── DCKeyValueObjectMapping.m │ ├── DCMapping.h │ ├── DCNSArrayConverter.h │ ├── DCNSArrayConverter.m │ ├── DCNSDateConverter.h │ ├── DCNSDateConverter.m │ ├── DCNSSetConverter.h │ ├── DCNSSetConverter.m │ ├── DCNSURLConverter.h │ ├── DCNSURLConverter.m │ ├── DCObjectMapping.h │ ├── DCObjectMapping.m │ ├── DCParserConfiguration.h │ ├── DCParserConfiguration.m │ ├── DCPropertyAggregator.h │ ├── DCPropertyAggregator.m │ ├── DCPropertyFinder.h │ ├── DCPropertyFinder.m │ ├── DCReferenceKeyParser.h │ ├── DCReferenceKeyParser.m │ ├── DCSimpleConverter.h │ ├── DCSimpleConverter.m │ ├── DCValueConverter.h │ ├── KeyValueObjectMapping-Info.plist │ ├── KeyValueObjectMapping-Prefix.pch │ ├── NSObject+DCKeyValueObjectMapping.h │ └── NSObject+DCKeyValueObjectMapping.m ├── KeyValueObjectMapping.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── KeyValueObjectMapping.xcscheme │ └── KeyValueObjectMappingTests.xcscheme ├── KeyValueObjectMappingTests/ │ ├── Bus.h │ ├── Bus.m │ ├── DCArrayOfTweetsOnUserTests.h │ ├── DCArrayOfTweetsOnUserTests.m │ ├── DCCoverageFix.h │ ├── DCCoverageFix.m │ ├── DCCustomFormaterTests.h │ ├── DCCustomFormaterTests.m │ ├── DCCustomInitializeTest.h │ ├── DCCustomInitializeTest.m │ ├── DCCustomParserTests.h │ ├── DCCustomParserTests.m │ ├── DCDynamicAttributeTest.h │ ├── DCDynamicAttributeTest.m │ ├── DCNSDateConverterTests.h │ ├── DCNSDateConverterTests.m │ ├── DCParserConfigurationTest.h │ ├── DCParserConfigurationTest.m │ ├── DCPropertyAggregatorTests.h │ ├── DCPropertyAggregatorTests.m │ ├── DCPropertyFinderTests.h │ ├── DCPropertyFinderTests.m │ ├── DCReferenceKeyParserTests.h │ ├── DCReferenceKeyParserTests.m │ ├── DCSerializationTests.h │ ├── DCSerializationTests.m │ ├── KeyValueObjectMappingTests-Info.plist │ ├── KeyValueObjectMappingTests.h │ ├── KeyValueObjectMappingTests.m │ ├── Location.h │ ├── Location.m │ ├── NSObject+DCKeyValueObjectMappingTests.m │ ├── Person.h │ ├── Person.m │ ├── Tweet.h │ ├── Tweet.m │ ├── User.h │ ├── User.m │ ├── en.lproj/ │ │ └── InfoPlist.strings │ ├── plist.plist │ ├── tweet.json │ └── user.json ├── LICENSE └── README.md