Skip to content

Commit cc11fe9

Browse files
committed
SDK files moved to SDK directory
1 parent dfdb8f0 commit cc11fe9

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

DrupalRESTKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
:git => 'https://github.com/vivekvpandya/DrupalRESTKit.git',
1717
:tag => s.version.to_s
1818
}
19-
s.source_files = 'DrupalRESTKit/*.{m,h}'
19+
s.source_files = 'DrupalRESTKit//*.{m,h}
2020
s.requires_arc = true
2121
s.dependency 'AFNetworking'
2222
end

DrupalRESTKit.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
CF390A0B1995D18D005A3DB7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CF3909ED1995D18D005A3DB7 /* UIKit.framework */; };
2222
CF390A131995D18D005A3DB7 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CF390A111995D18D005A3DB7 /* InfoPlist.strings */; };
2323
CF390A151995D18D005A3DB7 /* DrupalRESTKitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = CF390A141995D18D005A3DB7 /* DrupalRESTKitTests.m */; };
24-
CFCDC72D1995D40A00BD761C /* Drupal8RESTSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CFCDC72C1995D40A00BD761C /* Drupal8RESTSessionManager.m */; };
24+
CF4A5DC919968CC4003C0F36 /* Drupal8RESTSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CF4A5DC819968CC4003C0F36 /* Drupal8RESTSessionManager.m */; };
2525
CFCDC7301995D41900BD761C /* SDKDemoController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFCDC72F1995D41900BD761C /* SDKDemoController.m */; };
2626
/* End PBXBuildFile section */
2727

@@ -55,8 +55,8 @@
5555
CF390A101995D18D005A3DB7 /* DrupalRESTKitTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DrupalRESTKitTests-Info.plist"; sourceTree = "<group>"; };
5656
CF390A121995D18D005A3DB7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5757
CF390A141995D18D005A3DB7 /* DrupalRESTKitTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DrupalRESTKitTests.m; sourceTree = "<group>"; };
58-
CFCDC72B1995D40A00BD761C /* Drupal8RESTSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Drupal8RESTSessionManager.h; sourceTree = "<group>"; };
59-
CFCDC72C1995D40A00BD761C /* Drupal8RESTSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Drupal8RESTSessionManager.m; sourceTree = "<group>"; };
58+
CF4A5DC719968CC4003C0F36 /* Drupal8RESTSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Drupal8RESTSessionManager.h; path = SDK/Drupal8RESTSessionManager.h; sourceTree = "<group>"; };
59+
CF4A5DC819968CC4003C0F36 /* Drupal8RESTSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Drupal8RESTSessionManager.m; path = SDK/Drupal8RESTSessionManager.m; sourceTree = "<group>"; };
6060
CFCDC72E1995D41900BD761C /* SDKDemoController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDKDemoController.h; sourceTree = "<group>"; };
6161
CFCDC72F1995D41900BD761C /* SDKDemoController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDKDemoController.m; sourceTree = "<group>"; };
6262
/* End PBXFileReference section */
@@ -173,8 +173,8 @@
173173
CFCDC72A1995D3C800BD761C /* DrupalRESTKit */ = {
174174
isa = PBXGroup;
175175
children = (
176-
CFCDC72B1995D40A00BD761C /* Drupal8RESTSessionManager.h */,
177-
CFCDC72C1995D40A00BD761C /* Drupal8RESTSessionManager.m */,
176+
CF4A5DC719968CC4003C0F36 /* Drupal8RESTSessionManager.h */,
177+
CF4A5DC819968CC4003C0F36 /* Drupal8RESTSessionManager.m */,
178178
);
179179
name = DrupalRESTKit;
180180
sourceTree = "<group>";
@@ -314,7 +314,7 @@
314314
CFCDC7301995D41900BD761C /* SDKDemoController.m in Sources */,
315315
CF3909FA1995D18D005A3DB7 /* AppDelegate.m in Sources */,
316316
CF3909F61995D18D005A3DB7 /* main.m in Sources */,
317-
CFCDC72D1995D40A00BD761C /* Drupal8RESTSessionManager.m in Sources */,
317+
CF4A5DC919968CC4003C0F36 /* Drupal8RESTSessionManager.m in Sources */,
318318
);
319319
runOnlyForDeploymentPostprocessing = 0;
320320
};

DrupalRESTKit/Drupal8RESTSessionManager.h renamed to DrupalRESTKit/SDK/Drupal8RESTSessionManager.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
*/
3030

3131
#import <Foundation/Foundation.h>
32+
#import <AFNetworking/AFNetworking.h>
3233

3334
@interface Drupal8RESTSessionManager : NSObject
3435

File renamed without changes.

Pods/Pods.xcodeproj/xcuserdata/Mr.Pandya.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 12 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)