Skip to content

Commit

Permalink
Fixed issues with accessing RestKitResources.bundle from within unit …
Browse files Browse the repository at this point in the history
…tests
  • Loading branch information
blakewatters committed Mar 15, 2012
1 parent f8df25e commit 6efa73f
Show file tree
Hide file tree
Showing 19 changed files with 132 additions and 54 deletions.
19 changes: 11 additions & 8 deletions Code/CoreData/RKManagedObjectStore.m
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,17 @@ - (id)initWithStoreFilename:(NSString *)storeFilename inDirectory:(NSString *)ni
NSMutableArray* allManagedObjectModels = [[NSMutableArray alloc] init];
[allManagedObjectModels addObject:nilOrManagedObjectModel];

NSURL* rkCoreDataLibraryMOMURL = [[NSBundle restKitResourcesBundle] URLForResource:@"RestKitCoreData"
withExtension:@"momd"];
NSManagedObjectModel* rkCoreDataLibraryMOM = [[NSManagedObjectModel alloc] initWithContentsOfURL:rkCoreDataLibraryMOMURL];
if (rkCoreDataLibraryMOM) {
[allManagedObjectModels addObject:rkCoreDataLibraryMOM];
[rkCoreDataLibraryMOM release];
} else {
RKLogWarning(@"Unable to find RestKitCoreData.momd within the RestKitResources.bundle");
NSBundle *restKitResourcesBundle = [NSBundle restKitResourcesBundle];
if (restKitResourcesBundle) {
NSURL* rkCoreDataLibraryMOMURL = [restKitResourcesBundle URLForResource:@"RestKitCoreData"
withExtension:@"momd"];
NSManagedObjectModel* rkCoreDataLibraryMOM = [[NSManagedObjectModel alloc] initWithContentsOfURL:rkCoreDataLibraryMOMURL];
if (rkCoreDataLibraryMOM) {
[allManagedObjectModels addObject:rkCoreDataLibraryMOM];
[rkCoreDataLibraryMOM release];
} else {
RKLogWarning(@"Unable to find RestKitCoreData.momd within the RestKitResources.bundle");
}
}

_managedObjectModel = [[NSManagedObjectModel modelByMergingModels:allManagedObjectModels] retain];
Expand Down
10 changes: 10 additions & 0 deletions Code/Support/NSBundle+RKAdditions.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@
@implementation NSBundle (RKAdditions)

+ (NSBundle *)restKitResourcesBundle {
static BOOL searchedForBundle = NO;

if (! searchedForBundle) {
NSString *path = [[NSBundle mainBundle] pathForResource:@"RestKitResources" ofType:@"bundle"];
searchedForBundle = YES;
NSBundle *resourcesBundle = [NSBundle bundleWithPath:path];
if (! resourcesBundle) RKLogWarning(@"Unable to find RestKitResources.bundle in your project. Did you forget to add it?");
return resourcesBundle;
}

return [NSBundle bundleWithIdentifier:@"org.restkit.RestKitResources"];
}

Expand Down
1 change: 1 addition & 0 deletions Resources/en.lproj/InfoPlist.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* Localized versions of Info.plist keys */
92 changes: 46 additions & 46 deletions RestKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,16 @@
257ABAB71511371E00CCAA76 /* NSManagedObject+RKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 257ABAB41511371C00CCAA76 /* NSManagedObject+RKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
257ABAB81511371E00CCAA76 /* NSManagedObject+RKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 257ABAB51511371D00CCAA76 /* NSManagedObject+RKAdditions.m */; };
257ABAB91511371E00CCAA76 /* NSManagedObject+RKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 257ABAB51511371D00CCAA76 /* NSManagedObject+RKAdditions.m */; };
259C301715128079003066A2 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25EC1B0014F8078100C3CF3F /* CoreFoundation.framework */; };
259C3022151280A1003066A2 /* blackArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1ADE14F8022600C3CF3F /* blackArrow.png */; };
259C3023151280A1003066A2 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1ADF14F8022600C3CF3F /* [email protected] */; };
259C3024151280A1003066A2 /* blueArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE014F8022600C3CF3F /* blueArrow.png */; };
259C3025151280A1003066A2 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE114F8022600C3CF3F /* [email protected] */; };
259C3026151280A1003066A2 /* grayArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE214F8022600C3CF3F /* grayArrow.png */; };
259C3027151280A1003066A2 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE314F8022600C3CF3F /* [email protected] */; };
259C3028151280A1003066A2 /* whiteArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE414F8022600C3CF3F /* whiteArrow.png */; };
259C3029151280A1003066A2 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE514F8022600C3CF3F /* [email protected] */; };
259C302A151280B0003066A2 /* RestKitCoreData.xcdatamodeld in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1ADB14F8022600C3CF3F /* RestKitCoreData.xcdatamodeld */; };
25A34245147D8AAA0009758D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25A34244147D8AAA0009758D /* Security.framework */; };
25B408261491CDDC00F21111 /* RKDirectory.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B408241491CDDB00F21111 /* RKDirectory.h */; settings = {ATTRIBUTES = (Public, ); }; };
25B408271491CDDC00F21111 /* RKDirectory.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B408241491CDDB00F21111 /* RKDirectory.h */; settings = {ATTRIBUTES = (Public, ); }; };
Expand Down Expand Up @@ -660,16 +670,6 @@
25EC1AC114F8019F00C3CF3F /* RKRefreshTriggerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EC1ABA14F8019F00C3CF3F /* RKRefreshTriggerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
25EC1AC214F8019F00C3CF3F /* RKRefreshTriggerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25EC1ABB14F8019F00C3CF3F /* RKRefreshTriggerView.m */; };
25EC1AC314F8019F00C3CF3F /* RKRefreshTriggerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25EC1ABB14F8019F00C3CF3F /* RKRefreshTriggerView.m */; };
25EC1B0114F8078100C3CF3F /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25EC1B0014F8078100C3CF3F /* CoreFoundation.framework */; };
25EC1B0D14F8079800C3CF3F /* RestKitCoreData.xcdatamodeld in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1ADB14F8022600C3CF3F /* RestKitCoreData.xcdatamodeld */; };
25EC1B0E14F8079800C3CF3F /* blackArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1ADE14F8022600C3CF3F /* blackArrow.png */; };
25EC1B0F14F8079800C3CF3F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1ADF14F8022600C3CF3F /* [email protected] */; };
25EC1B1014F8079800C3CF3F /* blueArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE014F8022600C3CF3F /* blueArrow.png */; };
25EC1B1114F8079800C3CF3F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE114F8022600C3CF3F /* [email protected] */; };
25EC1B1214F8079800C3CF3F /* grayArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE214F8022600C3CF3F /* grayArrow.png */; };
25EC1B1314F8079800C3CF3F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE314F8022600C3CF3F /* [email protected] */; };
25EC1B1414F8079800C3CF3F /* whiteArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE414F8022600C3CF3F /* whiteArrow.png */; };
25EC1B1514F8079800C3CF3F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1AE514F8022600C3CF3F /* [email protected] */; };
25EC1B3914F84B5D00C3CF3F /* UIImage+RKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EC1B3714F84B5C00C3CF3F /* UIImage+RKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
25EC1B3A14F84B5D00C3CF3F /* UIImage+RKAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EC1B3714F84B5C00C3CF3F /* UIImage+RKAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
25EC1B3B14F84B5D00C3CF3F /* UIImage+RKAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 25EC1B3814F84B5C00C3CF3F /* UIImage+RKAdditions.m */; };
Expand Down Expand Up @@ -1033,6 +1033,7 @@
257ABAAF15112DD400CCAA76 /* NSManagedObjectContext+RKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSManagedObjectContext+RKAdditions.m"; sourceTree = "<group>"; };
257ABAB41511371C00CCAA76 /* NSManagedObject+RKAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSManagedObject+RKAdditions.h"; sourceTree = "<group>"; };
257ABAB51511371D00CCAA76 /* NSManagedObject+RKAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSManagedObject+RKAdditions.m"; sourceTree = "<group>"; };
259C301615128079003066A2 /* RestKitResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RestKitResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
25A34244147D8AAA0009758D /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = SDKs/MacOSX10.7.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
25B408241491CDDB00F21111 /* RKDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RKDirectory.h; sourceTree = "<group>"; };
25B408251491CDDB00F21111 /* RKDirectory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKDirectory.m; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1146,7 +1147,6 @@
25EC1AE314F8022600C3CF3F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
25EC1AE414F8022600C3CF3F /* whiteArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = whiteArrow.png; sourceTree = "<group>"; };
25EC1AE514F8022600C3CF3F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
25EC1AFF14F8078100C3CF3F /* RestKitResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RestKitResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
25EC1B0014F8078100C3CF3F /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
25EC1B1E14F821B500C3CF3F /* RestKitResources-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RestKitResources-Prefix.pch"; sourceTree = "<group>"; };
25EC1B1F14F8220800C3CF3F /* RestKitResources-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RestKitResources-Info.plist"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1233,11 +1233,11 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
25EC1AFC14F8078100C3CF3F /* Frameworks */ = {
259C301315128079003066A2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
25EC1B0114F8078100C3CF3F /* CoreFoundation.framework in Frameworks */,
259C301715128079003066A2 /* CoreFoundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -1272,7 +1272,7 @@
25160D2614564E820060A5C5 /* RestKitTests.octest */,
25160E62145651060060A5C5 /* RestKit.framework */,
25160E78145651060060A5C5 /* RestKitFrameworkTests.octest */,
25EC1AFF14F8078100C3CF3F /* RestKitResources.bundle */,
259C301615128079003066A2 /* RestKitResources.bundle */,
);
name = Products;
sourceTree = "<group>";
Expand Down Expand Up @@ -2418,22 +2418,22 @@
productReference = 25160E78145651060060A5C5 /* RestKitFrameworkTests.octest */;
productType = "com.apple.product-type.bundle";
};
25EC1AFE14F8078100C3CF3F /* RestKitResources */ = {
259C301515128079003066A2 /* RestKitResources */ = {
isa = PBXNativeTarget;
buildConfigurationList = 25EC1B0B14F8078100C3CF3F /* Build configuration list for PBXNativeTarget "RestKitResources" */;
buildConfigurationList = 259C301F15128079003066A2 /* Build configuration list for PBXNativeTarget "RestKitResources" */;
buildPhases = (
25EC1AFB14F8078100C3CF3F /* Sources */,
25EC1AFC14F8078100C3CF3F /* Frameworks */,
25EC1AFD14F8078100C3CF3F /* Resources */,
25EC1B2414F8229E00C3CF3F /* RSync Bundle to Source Tree */,
259C301215128079003066A2 /* Sources */,
259C301315128079003066A2 /* Frameworks */,
259C301415128079003066A2 /* Resources */,
259C303B151289DD003066A2 /* Sync Resources to Project */,
);
buildRules = (
);
dependencies = (
);
name = RestKitResources;
productName = RestKitResources;
productReference = 25EC1AFF14F8078100C3CF3F /* RestKitResources.bundle */;
productReference = 259C301615128079003066A2 /* RestKitResources.bundle */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
Expand Down Expand Up @@ -2461,7 +2461,7 @@
25160D2514564E820060A5C5 /* RestKitTests */,
25160E61145651060060A5C5 /* RestKitFramework */,
25160E77145651060060A5C5 /* RestKitFrameworkTests */,
25EC1AFE14F8078100C3CF3F /* RestKitResources */,
259C301515128079003066A2 /* RestKitResources */,
);
};
/* End PBXProject section */
Expand Down Expand Up @@ -2568,19 +2568,19 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
25EC1AFD14F8078100C3CF3F /* Resources */ = {
259C301415128079003066A2 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
25EC1B0D14F8079800C3CF3F /* RestKitCoreData.xcdatamodeld in Resources */,
25EC1B0E14F8079800C3CF3F /* blackArrow.png in Resources */,
25EC1B0F14F8079800C3CF3F /* [email protected] in Resources */,
25EC1B1014F8079800C3CF3F /* blueArrow.png in Resources */,
25EC1B1114F8079800C3CF3F /* [email protected] in Resources */,
25EC1B1214F8079800C3CF3F /* grayArrow.png in Resources */,
25EC1B1314F8079800C3CF3F /* [email protected] in Resources */,
25EC1B1414F8079800C3CF3F /* whiteArrow.png in Resources */,
25EC1B1514F8079800C3CF3F /* [email protected] in Resources */,
259C302A151280B0003066A2 /* RestKitCoreData.xcdatamodeld in Resources */,
259C3022151280A1003066A2 /* blackArrow.png in Resources */,
259C3023151280A1003066A2 /* [email protected] in Resources */,
259C3024151280A1003066A2 /* blueArrow.png in Resources */,
259C3025151280A1003066A2 /* [email protected] in Resources */,
259C3026151280A1003066A2 /* grayArrow.png in Resources */,
259C3027151280A1003066A2 /* [email protected] in Resources */,
259C3028151280A1003066A2 /* whiteArrow.png in Resources */,
259C3029151280A1003066A2 /* [email protected] in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -2613,19 +2613,19 @@
shellPath = /bin/sh;
shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
};
25EC1B2414F8229E00C3CF3F /* RSync Bundle to Source Tree */ = {
259C303B151289DD003066A2 /* Sync Resources to Project */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "RSync Bundle to Source Tree";
name = "Sync Resources to Project";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "echo \"rsync -av --delete ${BUILT_PRODUCTS_DIR}/${FULL_PRODUCT_NAME} ${SOURCE_ROOT}/${FULL_PRODUCT_NAME}\"";
shellPath = "/bin/bash -ex";
shellScript = "rsync -av --delete ${BUILT_PRODUCTS_DIR}/${FULL_PRODUCT_NAME}/ ${SOURCE_ROOT}/${FULL_PRODUCT_NAME}";
};
/* End PBXShellScriptBuildPhase section */

Expand Down Expand Up @@ -2997,7 +2997,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
25EC1AFB14F8078100C3CF3F /* Sources */ = {
259C301215128079003066A2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
Expand Down Expand Up @@ -3263,10 +3263,10 @@
};
name = Release;
};
25EC1B0914F8078100C3CF3F /* Debug */ = {
259C302015128079003066A2 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Resources/RestKitResources-Prefix.pch";
Expand All @@ -3277,15 +3277,15 @@
MACOSX_DEPLOYMENT_TARGET = 10.7;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SDKROOT = macosx;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
25EC1B0A14F8078100C3CF3F /* Release */ = {
259C302115128079003066A2 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
Expand All @@ -3296,7 +3296,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.7;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = iphoneos;
SDKROOT = macosx;
WRAPPER_EXTENSION = bundle;
};
name = Release;
Expand Down Expand Up @@ -3349,11 +3349,11 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
25EC1B0B14F8078100C3CF3F /* Build configuration list for PBXNativeTarget "RestKitResources" */ = {
259C301F15128079003066A2 /* Build configuration list for PBXNativeTarget "RestKitResources" */ = {
isa = XCConfigurationList;
buildConfigurations = (
25EC1B0914F8078100C3CF3F /* Debug */,
25EC1B0A14F8078100C3CF3F /* Release */,
259C302015128079003066A2 /* Debug */,
259C302115128079003066A2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
Expand Down
60 changes: 60 additions & 0 deletions RestKitResources.bundle/Contents/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>11D50b</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>RestKitResources</string>
<key>CFBundleIdentifier</key>
<string>org.restkit.RestKitResources</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>RestKitResources</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>CFPlugInDynamicRegisterFunction</key>
<string></string>
<key>CFPlugInDynamicRegistration</key>
<string>NO</string>
<key>CFPlugInFactories</key>
<dict>
<key>00000000-0000-0000-0000-000000000000</key>
<string>MyFactoryFunction</string>
</dict>
<key>CFPlugInTypes</key>
<dict>
<key>00000000-0000-0000-0000-000000000000</key>
<array>
<string>00000000-0000-0000-0000-000000000000</string>
</array>
</dict>
<key>CFPlugInUnloadFunction</key>
<string></string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>4E1019</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>11D50a</string>
<key>DTSDKName</key>
<string>macosx10.7</string>
<key>DTXcode</key>
<string>0431</string>
<key>DTXcodeBuild</key>
<string>4E1019</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012 RestKit. All rights reserved.</string>
</dict>
</plist>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<dict>
<key>RestKitCoreData</key>
<dict>
<key>RKDummyEntity</key>
<data>
/6y2a2HzepaKWU6jyRbFbNGg8ziPU4p6yr40qUG6bx8=
</data>
<key>RKSearchWord</key>
<data>
8ILMzYCnYe8uGzdLHqnxo6RUX+ifEi9tjcRr4dRZL24=
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file removed RestKitResources.bundle/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 6efa73f

Please sign in to comment.