Skip to content

Commit c400dde

Browse files
author
Brian Morton
committed
Update project settings.
1 parent af1339f commit c400dde

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

RKGithub.xcodeproj/project.pbxproj

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
25EC1A2714F6D63800C3CF3F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1A1F14F6D63800C3CF3F /* [email protected] */; };
5454
25EC1A2814F6D63800C3CF3F /* whiteArrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1A2014F6D63800C3CF3F /* whiteArrow.png */; };
5555
25EC1A2914F6D63800C3CF3F /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 25EC1A2114F6D63800C3CF3F /* [email protected] */; };
56+
D3497A7D14F79CC1003B4794 /* NSDate+Formatting.m in Sources */ = {isa = PBXBuildFile; fileRef = D3497A7C14F79CC1003B4794 /* NSDate+Formatting.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
57+
D354A5AE14F7803B00AAA1CA /* RKGHIssueCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D300B7DB14F77B7F0054A77B /* RKGHIssueCell.m */; };
58+
D354A5AF14F7803E00AAA1CA /* RKGHIssueCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D300B7DD14F77B8F0054A77B /* RKGHIssueCell.xib */; };
5659
/* End PBXBuildFile section */
5760

5861
/* Begin PBXContainerItemProxy section */
@@ -162,6 +165,11 @@
162165
25EC1A1F14F6D63800C3CF3F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
163166
25EC1A2014F6D63800C3CF3F /* whiteArrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = whiteArrow.png; sourceTree = "<group>"; };
164167
25EC1A2114F6D63800C3CF3F /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
168+
D300B7DA14F77B7F0054A77B /* RKGHIssueCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RKGHIssueCell.h; sourceTree = "<group>"; };
169+
D300B7DB14F77B7F0054A77B /* RKGHIssueCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKGHIssueCell.m; sourceTree = "<group>"; };
170+
D300B7DD14F77B8F0054A77B /* RKGHIssueCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RKGHIssueCell.xib; sourceTree = "<group>"; };
171+
D3497A7B14F79CC1003B4794 /* NSDate+Formatting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSDate+Formatting.h"; path = "Libraries/DistanceOfTimeInWords/DistanceOfTimeInWords/NSDate+Formatting.h"; sourceTree = "<group>"; };
172+
D3497A7C14F79CC1003B4794 /* NSDate+Formatting.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSDate+Formatting.m"; path = "Libraries/DistanceOfTimeInWords/DistanceOfTimeInWords/NSDate+Formatting.m"; sourceTree = "<group>"; };
165173
/* End PBXFileReference section */
166174

167175
/* Begin PBXFrameworksBuildPhase section */
@@ -237,6 +245,7 @@
237245
25CA7AE614ED693600888FF8 /* Libraries */ = {
238246
isa = PBXGroup;
239247
children = (
248+
D3497A7A14F79CB0003B4794 /* DistanceOfTimeInWords */,
240249
25CA7AE814ED694400888FF8 /* RestKit.xcodeproj */,
241250
);
242251
name = Libraries;
@@ -256,6 +265,7 @@
256265
25CA7B1314ED77AF00888FF8 /* Code */ = {
257266
isa = PBXGroup;
258267
children = (
268+
D3497A6414F79942003B4794 /* Extensions */,
259269
25CA7B1414ED77AF00888FF8 /* Controllers */,
260270
25CA7B1A14ED77AF00888FF8 /* Models */,
261271
25CA7B1E14ED77AF00888FF8 /* Views */,
@@ -304,6 +314,9 @@
304314
25CA7B1E14ED77AF00888FF8 /* Views */ = {
305315
isa = PBXGroup;
306316
children = (
317+
D300B7DA14F77B7F0054A77B /* RKGHIssueCell.h */,
318+
D300B7DB14F77B7F0054A77B /* RKGHIssueCell.m */,
319+
D300B7DD14F77B8F0054A77B /* RKGHIssueCell.xib */,
307320
);
308321
path = Views;
309322
sourceTree = "<group>";
@@ -386,6 +399,22 @@
386399
path = Images;
387400
sourceTree = "<group>";
388401
};
402+
D3497A6414F79942003B4794 /* Extensions */ = {
403+
isa = PBXGroup;
404+
children = (
405+
);
406+
name = Extensions;
407+
sourceTree = "<group>";
408+
};
409+
D3497A7A14F79CB0003B4794 /* DistanceOfTimeInWords */ = {
410+
isa = PBXGroup;
411+
children = (
412+
D3497A7B14F79CC1003B4794 /* NSDate+Formatting.h */,
413+
D3497A7C14F79CC1003B4794 /* NSDate+Formatting.m */,
414+
);
415+
name = DistanceOfTimeInWords;
416+
sourceTree = "<group>";
417+
};
389418
/* End PBXGroup section */
390419

391420
/* Begin PBXNativeTarget section */
@@ -505,6 +534,7 @@
505534
25EC1A2714F6D63800C3CF3F /* [email protected] in Resources */,
506535
25EC1A2814F6D63800C3CF3F /* whiteArrow.png in Resources */,
507536
25EC1A2914F6D63800C3CF3F /* [email protected] in Resources */,
537+
D354A5AF14F7803E00AAA1CA /* RKGHIssueCell.xib in Resources */,
508538
);
509539
runOnlyForDeploymentPostprocessing = 0;
510540
};
@@ -554,6 +584,8 @@
554584
25055C1E14F57AEA00B9C4DD /* RKGHUser.m in Sources */,
555585
25055C2114F57B0700B9C4DD /* RKGHMilestone.m in Sources */,
556586
25055C3214F5E83A00B9C4DD /* RKGHIssueDetailTableViewController.m in Sources */,
587+
D354A5AE14F7803B00AAA1CA /* RKGHIssueCell.m in Sources */,
588+
D3497A7D14F79CC1003B4794 /* NSDate+Formatting.m in Sources */,
557589
);
558590
runOnlyForDeploymentPostprocessing = 0;
559591
};

0 commit comments

Comments
 (0)