Navigation Menu

Skip to content

Commit

Permalink
Make imports of RKParser relative so they resolve correctly outside o…
Browse files Browse the repository at this point in the history
…f the library project
  • Loading branch information
blakewatters committed Jun 13, 2011
1 parent a41917a commit 2493828
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Code/Support/Parsers/JSON/RKJSONParserJSONKit.h
Expand Up @@ -6,7 +6,7 @@
// Copyright 2011 Two Toasters. All rights reserved.
//

#import "RKParser.h"
#import "../../RKParser.h"

@interface RKJSONParserJSONKit : NSObject <RKParser> {
}
Expand Down
2 changes: 1 addition & 1 deletion Code/Support/Parsers/JSON/RKJSONParserSBJSON.h
Expand Up @@ -6,7 +6,7 @@
// Copyright 2011 Two Toasters. All rights reserved.
//

#import "RKParser.h"
#import "../../RKParser.h"

@interface RKJSONParserSBJSON : NSObject <RKParser> {
}
Expand Down
2 changes: 1 addition & 1 deletion Code/Support/Parsers/JSON/RKJSONParserYAJL.h
Expand Up @@ -6,7 +6,7 @@
// Copyright 2011 Two Toasters. All rights reserved.
//

#import "RKParser.h"
#import "../../RKParser.h"

@interface RKJSONParserYAJL : NSObject <RKParser> {
}
Expand Down
Expand Up @@ -6,7 +6,7 @@
//

#import <Foundation/Foundation.h>
#import "RKParser.h"
#import "../../RKParser.h"

/**
This is a dead simple XML parser that uses libxml2 to parse an XML document
Expand Down
Expand Up @@ -11,6 +11,9 @@
// RestKit
#import <RestKit/RestKit.h>
#import <RestKit/CoreData/CoreData.h>
#import <RestKit/Support/JSON/JSONKit/RKJSONParserJSONKit.h>
#import <RestKit/Support/JSON/SBJSON/RKJSONParserSBJSON.h>
#import <RestKit/Support/JSON/YAJL/RKJSONParserYAJL.h>

// Three20
#import <Three20/Three20.h>
Expand Down
2 changes: 1 addition & 1 deletion RestKit.xcodeproj/project.pbxproj
Expand Up @@ -577,7 +577,7 @@
259D5557132856D700897272 /* libUISpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libUISpec.a; sourceTree = SOURCE_ROOT; };
259D56B4132E706D00897272 /* RKAuthenticationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKAuthenticationSpec.m; sourceTree = "<group>"; };
259D56BB132E84B300897272 /* RKSpecEnvironment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKSpecEnvironment.m; sourceTree = "<group>"; };
259DF7831340294400233DF4 /* RKXMLParserLibXML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RKXMLParserLibXML.h; path = ../RKXMLParserLibXML.h; sourceTree = "<group>"; };
259DF7831340294400233DF4 /* RKXMLParserLibXML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RKXMLParserLibXML.h; sourceTree = "<group>"; };
259DF7851340294400233DF4 /* RKXMLParserLibXML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKXMLParserLibXML.m; sourceTree = "<group>"; };
25A1CA83137C37E300A7D5C9 /* RKManagedObjectThreadSafeInvocationSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKManagedObjectThreadSafeInvocationSpec.m; sourceTree = "<group>"; };
25A1CA85137C521C00A7D5C9 /* RKManagedObjectThreadSafeInvocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RKManagedObjectThreadSafeInvocation.h; sourceTree = "<group>"; };
Expand Down

0 comments on commit 2493828

Please sign in to comment.