appjam 0.1.0.pre4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. data/LICENSE.txt +20 -0
  2. data/README.rdoc +27 -0
  3. data/bin/appjam +17 -0
  4. data/lib/appjam.rb +50 -0
  5. data/lib/appjam/generators/Classes/ContactsAppDelegate.h.tt +18 -0
  6. data/lib/appjam/generators/Classes/ContactsAppDelegate.m.tt +88 -0
  7. data/lib/appjam/generators/Classes/org/puremvc/objectivec/core/Controller.h +54 -0
  8. data/lib/appjam/generators/Classes/org/puremvc/objectivec/core/Controller.m +145 -0
  9. data/lib/appjam/generators/Classes/org/puremvc/objectivec/core/Model.h +47 -0
  10. data/lib/appjam/generators/Classes/org/puremvc/objectivec/core/Model.m +117 -0
  11. data/lib/appjam/generators/Classes/org/puremvc/objectivec/core/View.h +39 -0
  12. data/lib/appjam/generators/Classes/org/puremvc/objectivec/core/View.m +207 -0
  13. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/ICommand.h +16 -0
  14. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IController.h +57 -0
  15. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IFacade.h +135 -0
  16. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IMediator.h +84 -0
  17. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IModel.h +50 -0
  18. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/INotification.h +57 -0
  19. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/INotifier.h +41 -0
  20. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IObserver.h +67 -0
  21. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IProxy.h +53 -0
  22. data/lib/appjam/generators/Classes/org/puremvc/objectivec/interfaces/IView.h +96 -0
  23. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/command/MacroCommand.h +50 -0
  24. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/command/MacroCommand.m +101 -0
  25. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/command/SimpleCommand.h +28 -0
  26. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/command/SimpleCommand.m +34 -0
  27. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/facade/Facade.h +52 -0
  28. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/facade/Facade.m +304 -0
  29. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/mediator/Mediator.h +35 -0
  30. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/mediator/Mediator.m +101 -0
  31. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/observer/Notification.h +52 -0
  32. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/observer/Notification.m +71 -0
  33. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/observer/Notifier.h +40 -0
  34. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/observer/Notifier.m +54 -0
  35. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/observer/Observer.h +42 -0
  36. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/observer/Observer.m +67 -0
  37. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/proxy/Proxy.h +51 -0
  38. data/lib/appjam/generators/Classes/org/puremvc/objectivec/patterns/proxy/Proxy.m +73 -0
  39. data/lib/appjam/generators/Classes/users/ApplicationFacade.h.tt +31 -0
  40. data/lib/appjam/generators/Classes/users/ApplicationFacade.m.tt +33 -0
  41. data/lib/appjam/generators/Classes/users/controller/CreateUserCommand.h.tt +16 -0
  42. data/lib/appjam/generators/Classes/users/controller/CreateUserCommand.m.tt +27 -0
  43. data/lib/appjam/generators/Classes/users/controller/DeleteUserCommand.h.tt +16 -0
  44. data/lib/appjam/generators/Classes/users/controller/DeleteUserCommand.m.tt +21 -0
  45. data/lib/appjam/generators/Classes/users/controller/GetUsersCommand.h.tt +17 -0
  46. data/lib/appjam/generators/Classes/users/controller/GetUsersCommand.m.tt +21 -0
  47. data/lib/appjam/generators/Classes/users/controller/StartupCommand.h.tt +16 -0
  48. data/lib/appjam/generators/Classes/users/controller/StartupCommand.m.tt +29 -0
  49. data/lib/appjam/generators/Classes/users/controller/UpdateUserCommand.h.tt +16 -0
  50. data/lib/appjam/generators/Classes/users/controller/UpdateUserCommand.m.tt +27 -0
  51. data/lib/appjam/generators/Classes/users/model/UserProxy.h.tt +19 -0
  52. data/lib/appjam/generators/Classes/users/model/UserProxy.m.tt +59 -0
  53. data/lib/appjam/generators/Classes/users/model/vo/UserVO.h.tt +22 -0
  54. data/lib/appjam/generators/Classes/users/model/vo/UserVO.m.tt +47 -0
  55. data/lib/appjam/generators/Classes/users/view/ContactsMediator.h.tt +15 -0
  56. data/lib/appjam/generators/Classes/users/view/ContactsMediator.m.tt +43 -0
  57. data/lib/appjam/generators/Classes/users/view/UserFormMediator.h.tt +17 -0
  58. data/lib/appjam/generators/Classes/users/view/UserFormMediator.m.tt +57 -0
  59. data/lib/appjam/generators/Classes/users/view/UserListMediator.h.tt +17 -0
  60. data/lib/appjam/generators/Classes/users/view/UserListMediator.m.tt +59 -0
  61. data/lib/appjam/generators/Classes/users/view/components/Contacts.h.tt +27 -0
  62. data/lib/appjam/generators/Classes/users/view/components/Contacts.m.tt +46 -0
  63. data/lib/appjam/generators/Classes/users/view/components/UserForm.h.tt +37 -0
  64. data/lib/appjam/generators/Classes/users/view/components/UserForm.m.tt +118 -0
  65. data/lib/appjam/generators/Classes/users/view/components/UserList.h.tt +31 -0
  66. data/lib/appjam/generators/Classes/users/view/components/UserList.m.tt +77 -0
  67. data/lib/appjam/generators/Contacts-Info.plist.tt +28 -0
  68. data/lib/appjam/generators/Contacts.xcodeproj/eiffel.pbxuser +1671 -0
  69. data/lib/appjam/generators/Contacts.xcodeproj/eiffel.perspectivev3 +1638 -0
  70. data/lib/appjam/generators/Contacts.xcodeproj/project.pbxproj +574 -0
  71. data/lib/appjam/generators/Contacts_Prefix.pch.tt +8 -0
  72. data/lib/appjam/generators/app.rb +78 -0
  73. data/lib/appjam/generators/main.m.tt +17 -0
  74. data/lib/appjam/generators/utils/NSStringWhiteSpace.h +17 -0
  75. data/lib/appjam/generators/utils/NSStringWhiteSpace.m +31 -0
  76. data/lib/appjam/generators/utils/UIDevice.h +17 -0
  77. data/lib/appjam/generators/utils/UIDevice.m +83 -0
  78. data/lib/appjam/generators/utils/URLEncodeString.h +16 -0
  79. data/lib/appjam/generators/utils/URLEncodeString.m +29 -0
  80. data/lib/appjam/version.rb +10 -0
  81. data/spec/appjam_spec.rb +7 -0
  82. data/spec/spec_helper.rb +12 -0
  83. metadata +270 -0
@@ -0,0 +1,574 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 45;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 1D3623260D0F684500981E51 /* ContactsAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* ContactsAppDelegate.m */; };
11
+ 1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
12
+ 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
13
+ 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
14
+ 288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765FC0DF74451002DB57D /* CoreGraphics.framework */; };
15
+ C59074C213657FCD000E113F /* ApplicationFacade.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074A113657FCD000E113F /* ApplicationFacade.m */; };
16
+ C59074C313657FCD000E113F /* CreateUserCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074A413657FCD000E113F /* CreateUserCommand.m */; };
17
+ C59074C413657FCD000E113F /* DeleteUserCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074A613657FCD000E113F /* DeleteUserCommand.m */; };
18
+ C59074C513657FCD000E113F /* GetUsersCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074A813657FCD000E113F /* GetUsersCommand.m */; };
19
+ C59074C613657FCD000E113F /* StartupCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074AA13657FCD000E113F /* StartupCommand.m */; };
20
+ C59074C713657FCD000E113F /* UpdateUserCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074AC13657FCD000E113F /* UpdateUserCommand.m */; };
21
+ C59074C813657FCD000E113F /* UserProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074B013657FCD000E113F /* UserProxy.m */; };
22
+ C59074C913657FCD000E113F /* UserVO.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074B313657FCD000E113F /* UserVO.m */; };
23
+ C59074CA13657FCD000E113F /* Contacts.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074B713657FCD000E113F /* Contacts.m */; };
24
+ C59074CB13657FCD000E113F /* UserForm.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074B913657FCD000E113F /* UserForm.m */; };
25
+ C59074CC13657FCD000E113F /* UserList.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074BB13657FCD000E113F /* UserList.m */; };
26
+ C59074CD13657FCD000E113F /* ContactsMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074BD13657FCD000E113F /* ContactsMediator.m */; };
27
+ C59074CE13657FCD000E113F /* UserFormMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074BF13657FCD000E113F /* UserFormMediator.m */; };
28
+ C59074CF13657FCD000E113F /* UserListMediator.m in Sources */ = {isa = PBXBuildFile; fileRef = C59074C113657FCD000E113F /* UserListMediator.m */; };
29
+ C5A9BAE2130B670300A7F169 /* Controller.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BABC130B670300A7F169 /* Controller.m */; };
30
+ C5A9BAE3130B670300A7F169 /* Model.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BABE130B670300A7F169 /* Model.m */; };
31
+ C5A9BAE4130B670300A7F169 /* View.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BAC0130B670300A7F169 /* View.m */; };
32
+ C5A9BAE5130B670300A7F169 /* MacroCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BACF130B670300A7F169 /* MacroCommand.m */; };
33
+ C5A9BAE6130B670300A7F169 /* SimpleCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BAD1130B670300A7F169 /* SimpleCommand.m */; };
34
+ C5A9BAE7130B670300A7F169 /* Facade.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BAD4130B670300A7F169 /* Facade.m */; };
35
+ C5A9BAE8130B670300A7F169 /* Mediator.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BAD7130B670300A7F169 /* Mediator.m */; };
36
+ C5A9BAE9130B670300A7F169 /* Notification.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BADA130B670300A7F169 /* Notification.m */; };
37
+ C5A9BAEA130B670300A7F169 /* Notifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BADC130B670300A7F169 /* Notifier.m */; };
38
+ C5A9BAEB130B670300A7F169 /* Observer.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BADE130B670300A7F169 /* Observer.m */; };
39
+ C5A9BAEC130B670300A7F169 /* Proxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A9BAE1130B670300A7F169 /* Proxy.m */; };
40
+ /* End PBXBuildFile section */
41
+
42
+ /* Begin PBXFileReference section */
43
+ 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
44
+ 1D3623240D0F684500981E51 /* ContactsAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContactsAppDelegate.h; sourceTree = "<group>"; };
45
+ 1D3623250D0F684500981E51 /* ContactsAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContactsAppDelegate.m; sourceTree = "<group>"; };
46
+ 1D6058910D05DD3D006BFB54 /* Contacts.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Contacts.app; sourceTree = BUILT_PRODUCTS_DIR; };
47
+ 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
48
+ 288765FC0DF74451002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
49
+ 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
50
+ 32CA4F630368D1EE00C91783 /* Contacts_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Contacts_Prefix.pch; sourceTree = "<group>"; };
51
+ 8D1107310486CEB800E47090 /* Contacts-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Contacts-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = "<group>"; };
52
+ C59074A013657FCD000E113F /* ApplicationFacade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplicationFacade.h; sourceTree = "<group>"; };
53
+ C59074A113657FCD000E113F /* ApplicationFacade.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplicationFacade.m; sourceTree = "<group>"; };
54
+ C59074A313657FCD000E113F /* CreateUserCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CreateUserCommand.h; sourceTree = "<group>"; };
55
+ C59074A413657FCD000E113F /* CreateUserCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CreateUserCommand.m; sourceTree = "<group>"; };
56
+ C59074A513657FCD000E113F /* DeleteUserCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeleteUserCommand.h; sourceTree = "<group>"; };
57
+ C59074A613657FCD000E113F /* DeleteUserCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeleteUserCommand.m; sourceTree = "<group>"; };
58
+ C59074A713657FCD000E113F /* GetUsersCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GetUsersCommand.h; sourceTree = "<group>"; };
59
+ C59074A813657FCD000E113F /* GetUsersCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GetUsersCommand.m; sourceTree = "<group>"; };
60
+ C59074A913657FCD000E113F /* StartupCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartupCommand.h; sourceTree = "<group>"; };
61
+ C59074AA13657FCD000E113F /* StartupCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StartupCommand.m; sourceTree = "<group>"; };
62
+ C59074AB13657FCD000E113F /* UpdateUserCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpdateUserCommand.h; sourceTree = "<group>"; };
63
+ C59074AC13657FCD000E113F /* UpdateUserCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UpdateUserCommand.m; sourceTree = "<group>"; };
64
+ C59074AF13657FCD000E113F /* UserProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserProxy.h; sourceTree = "<group>"; };
65
+ C59074B013657FCD000E113F /* UserProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserProxy.m; sourceTree = "<group>"; };
66
+ C59074B213657FCD000E113F /* UserVO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserVO.h; sourceTree = "<group>"; };
67
+ C59074B313657FCD000E113F /* UserVO.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserVO.m; sourceTree = "<group>"; };
68
+ C59074B613657FCD000E113F /* Contacts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Contacts.h; sourceTree = "<group>"; };
69
+ C59074B713657FCD000E113F /* Contacts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Contacts.m; sourceTree = "<group>"; };
70
+ C59074B813657FCD000E113F /* UserForm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserForm.h; sourceTree = "<group>"; };
71
+ C59074B913657FCD000E113F /* UserForm.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserForm.m; sourceTree = "<group>"; };
72
+ C59074BA13657FCD000E113F /* UserList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserList.h; sourceTree = "<group>"; };
73
+ C59074BB13657FCD000E113F /* UserList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserList.m; sourceTree = "<group>"; };
74
+ C59074BC13657FCD000E113F /* ContactsMediator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContactsMediator.h; sourceTree = "<group>"; };
75
+ C59074BD13657FCD000E113F /* ContactsMediator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContactsMediator.m; sourceTree = "<group>"; };
76
+ C59074BE13657FCD000E113F /* UserFormMediator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserFormMediator.h; sourceTree = "<group>"; };
77
+ C59074BF13657FCD000E113F /* UserFormMediator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserFormMediator.m; sourceTree = "<group>"; };
78
+ C59074C013657FCD000E113F /* UserListMediator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserListMediator.h; sourceTree = "<group>"; };
79
+ C59074C113657FCD000E113F /* UserListMediator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserListMediator.m; sourceTree = "<group>"; };
80
+ C5A9BABB130B670300A7F169 /* Controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Controller.h; sourceTree = "<group>"; };
81
+ C5A9BABC130B670300A7F169 /* Controller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Controller.m; sourceTree = "<group>"; };
82
+ C5A9BABD130B670300A7F169 /* Model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Model.h; sourceTree = "<group>"; };
83
+ C5A9BABE130B670300A7F169 /* Model.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Model.m; sourceTree = "<group>"; };
84
+ C5A9BABF130B670300A7F169 /* View.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = View.h; sourceTree = "<group>"; };
85
+ C5A9BAC0130B670300A7F169 /* View.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = View.m; sourceTree = "<group>"; };
86
+ C5A9BAC2130B670300A7F169 /* ICommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ICommand.h; sourceTree = "<group>"; };
87
+ C5A9BAC3130B670300A7F169 /* IController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IController.h; sourceTree = "<group>"; };
88
+ C5A9BAC4130B670300A7F169 /* IFacade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IFacade.h; sourceTree = "<group>"; };
89
+ C5A9BAC5130B670300A7F169 /* IMediator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IMediator.h; sourceTree = "<group>"; };
90
+ C5A9BAC6130B670300A7F169 /* IModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IModel.h; sourceTree = "<group>"; };
91
+ C5A9BAC7130B670300A7F169 /* INotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INotification.h; sourceTree = "<group>"; };
92
+ C5A9BAC8130B670300A7F169 /* INotifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = INotifier.h; sourceTree = "<group>"; };
93
+ C5A9BAC9130B670300A7F169 /* IObserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IObserver.h; sourceTree = "<group>"; };
94
+ C5A9BACA130B670300A7F169 /* IProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IProxy.h; sourceTree = "<group>"; };
95
+ C5A9BACB130B670300A7F169 /* IView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IView.h; sourceTree = "<group>"; };
96
+ C5A9BACE130B670300A7F169 /* MacroCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacroCommand.h; sourceTree = "<group>"; };
97
+ C5A9BACF130B670300A7F169 /* MacroCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MacroCommand.m; sourceTree = "<group>"; };
98
+ C5A9BAD0130B670300A7F169 /* SimpleCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleCommand.h; sourceTree = "<group>"; };
99
+ C5A9BAD1130B670300A7F169 /* SimpleCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleCommand.m; sourceTree = "<group>"; };
100
+ C5A9BAD3130B670300A7F169 /* Facade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Facade.h; sourceTree = "<group>"; };
101
+ C5A9BAD4130B670300A7F169 /* Facade.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Facade.m; sourceTree = "<group>"; };
102
+ C5A9BAD6130B670300A7F169 /* Mediator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Mediator.h; sourceTree = "<group>"; };
103
+ C5A9BAD7130B670300A7F169 /* Mediator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Mediator.m; sourceTree = "<group>"; };
104
+ C5A9BAD9130B670300A7F169 /* Notification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Notification.h; sourceTree = "<group>"; };
105
+ C5A9BADA130B670300A7F169 /* Notification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Notification.m; sourceTree = "<group>"; };
106
+ C5A9BADB130B670300A7F169 /* Notifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Notifier.h; sourceTree = "<group>"; };
107
+ C5A9BADC130B670300A7F169 /* Notifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Notifier.m; sourceTree = "<group>"; };
108
+ C5A9BADD130B670300A7F169 /* Observer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Observer.h; sourceTree = "<group>"; };
109
+ C5A9BADE130B670300A7F169 /* Observer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Observer.m; sourceTree = "<group>"; };
110
+ C5A9BAE0130B670300A7F169 /* Proxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Proxy.h; sourceTree = "<group>"; };
111
+ C5A9BAE1130B670300A7F169 /* Proxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Proxy.m; sourceTree = "<group>"; };
112
+ /* End PBXFileReference section */
113
+
114
+ /* Begin PBXFrameworksBuildPhase section */
115
+ 1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
116
+ isa = PBXFrameworksBuildPhase;
117
+ buildActionMask = 2147483647;
118
+ files = (
119
+ 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */,
120
+ 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */,
121
+ 288765FD0DF74451002DB57D /* CoreGraphics.framework in Frameworks */,
122
+ );
123
+ runOnlyForDeploymentPostprocessing = 0;
124
+ };
125
+ /* End PBXFrameworksBuildPhase section */
126
+
127
+ /* Begin PBXGroup section */
128
+ 080E96DDFE201D6D7F000001 /* Classes */ = {
129
+ isa = PBXGroup;
130
+ children = (
131
+ C590749E13657FB7000E113F /* users */,
132
+ C5A9BAAD130B66C900A7F169 /* puremvc */,
133
+ 1D3623240D0F684500981E51 /* ContactsAppDelegate.h */,
134
+ 1D3623250D0F684500981E51 /* ContactsAppDelegate.m */,
135
+ );
136
+ path = Classes;
137
+ sourceTree = "<group>";
138
+ };
139
+ 19C28FACFE9D520D11CA2CBB /* Products */ = {
140
+ isa = PBXGroup;
141
+ children = (
142
+ 1D6058910D05DD3D006BFB54 /* Contacts.app */,
143
+ );
144
+ name = Products;
145
+ sourceTree = "<group>";
146
+ };
147
+ 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ 080E96DDFE201D6D7F000001 /* Classes */,
151
+ 29B97315FDCFA39411CA2CEA /* Other Sources */,
152
+ 29B97317FDCFA39411CA2CEA /* Resources */,
153
+ 29B97323FDCFA39411CA2CEA /* Frameworks */,
154
+ 19C28FACFE9D520D11CA2CBB /* Products */,
155
+ );
156
+ name = CustomTemplate;
157
+ sourceTree = "<group>";
158
+ };
159
+ 29B97315FDCFA39411CA2CEA /* Other Sources */ = {
160
+ isa = PBXGroup;
161
+ children = (
162
+ 32CA4F630368D1EE00C91783 /* Contacts_Prefix.pch */,
163
+ 29B97316FDCFA39411CA2CEA /* main.m */,
164
+ );
165
+ name = "Other Sources";
166
+ sourceTree = "<group>";
167
+ };
168
+ 29B97317FDCFA39411CA2CEA /* Resources */ = {
169
+ isa = PBXGroup;
170
+ children = (
171
+ 8D1107310486CEB800E47090 /* Contacts-Info.plist */,
172
+ );
173
+ name = Resources;
174
+ sourceTree = "<group>";
175
+ };
176
+ 29B97323FDCFA39411CA2CEA /* Frameworks */ = {
177
+ isa = PBXGroup;
178
+ children = (
179
+ 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
180
+ 1D30AB110D05D00D00671497 /* Foundation.framework */,
181
+ 288765FC0DF74451002DB57D /* CoreGraphics.framework */,
182
+ );
183
+ name = Frameworks;
184
+ sourceTree = "<group>";
185
+ };
186
+ C590749E13657FB7000E113F /* users */ = {
187
+ isa = PBXGroup;
188
+ children = (
189
+ C590749F13657FCD000E113F /* users */,
190
+ );
191
+ name = users;
192
+ sourceTree = "<group>";
193
+ };
194
+ C590749F13657FCD000E113F /* users */ = {
195
+ isa = PBXGroup;
196
+ children = (
197
+ C59074A013657FCD000E113F /* ApplicationFacade.h */,
198
+ C59074A113657FCD000E113F /* ApplicationFacade.m */,
199
+ C59074A213657FCD000E113F /* controller */,
200
+ C59074AD13657FCD000E113F /* model */,
201
+ C59074B413657FCD000E113F /* view */,
202
+ );
203
+ path = users;
204
+ sourceTree = "<group>";
205
+ };
206
+ C59074A213657FCD000E113F /* controller */ = {
207
+ isa = PBXGroup;
208
+ children = (
209
+ C59074A313657FCD000E113F /* CreateUserCommand.h */,
210
+ C59074A413657FCD000E113F /* CreateUserCommand.m */,
211
+ C59074A513657FCD000E113F /* DeleteUserCommand.h */,
212
+ C59074A613657FCD000E113F /* DeleteUserCommand.m */,
213
+ C59074A713657FCD000E113F /* GetUsersCommand.h */,
214
+ C59074A813657FCD000E113F /* GetUsersCommand.m */,
215
+ C59074A913657FCD000E113F /* StartupCommand.h */,
216
+ C59074AA13657FCD000E113F /* StartupCommand.m */,
217
+ C59074AB13657FCD000E113F /* UpdateUserCommand.h */,
218
+ C59074AC13657FCD000E113F /* UpdateUserCommand.m */,
219
+ );
220
+ path = controller;
221
+ sourceTree = "<group>";
222
+ };
223
+ C59074AD13657FCD000E113F /* model */ = {
224
+ isa = PBXGroup;
225
+ children = (
226
+ C59074AE13657FCD000E113F /* enum */,
227
+ C59074AF13657FCD000E113F /* UserProxy.h */,
228
+ C59074B013657FCD000E113F /* UserProxy.m */,
229
+ C59074B113657FCD000E113F /* vo */,
230
+ );
231
+ path = model;
232
+ sourceTree = "<group>";
233
+ };
234
+ C59074AE13657FCD000E113F /* enum */ = {
235
+ isa = PBXGroup;
236
+ children = (
237
+ );
238
+ path = enum;
239
+ sourceTree = "<group>";
240
+ };
241
+ C59074B113657FCD000E113F /* vo */ = {
242
+ isa = PBXGroup;
243
+ children = (
244
+ C59074B213657FCD000E113F /* UserVO.h */,
245
+ C59074B313657FCD000E113F /* UserVO.m */,
246
+ );
247
+ path = vo;
248
+ sourceTree = "<group>";
249
+ };
250
+ C59074B413657FCD000E113F /* view */ = {
251
+ isa = PBXGroup;
252
+ children = (
253
+ C59074B513657FCD000E113F /* components */,
254
+ C59074BC13657FCD000E113F /* ContactsMediator.h */,
255
+ C59074BD13657FCD000E113F /* ContactsMediator.m */,
256
+ C59074BE13657FCD000E113F /* UserFormMediator.h */,
257
+ C59074BF13657FCD000E113F /* UserFormMediator.m */,
258
+ C59074C013657FCD000E113F /* UserListMediator.h */,
259
+ C59074C113657FCD000E113F /* UserListMediator.m */,
260
+ );
261
+ path = view;
262
+ sourceTree = "<group>";
263
+ };
264
+ C59074B513657FCD000E113F /* components */ = {
265
+ isa = PBXGroup;
266
+ children = (
267
+ C59074B613657FCD000E113F /* Contacts.h */,
268
+ C59074B713657FCD000E113F /* Contacts.m */,
269
+ C59074B813657FCD000E113F /* UserForm.h */,
270
+ C59074B913657FCD000E113F /* UserForm.m */,
271
+ C59074BA13657FCD000E113F /* UserList.h */,
272
+ C59074BB13657FCD000E113F /* UserList.m */,
273
+ );
274
+ path = components;
275
+ sourceTree = "<group>";
276
+ };
277
+ C5A9BAAD130B66C900A7F169 /* puremvc */ = {
278
+ isa = PBXGroup;
279
+ children = (
280
+ C5A9BAB7130B670300A7F169 /* org */,
281
+ );
282
+ name = puremvc;
283
+ sourceTree = "<group>";
284
+ };
285
+ C5A9BAB7130B670300A7F169 /* org */ = {
286
+ isa = PBXGroup;
287
+ children = (
288
+ C5A9BAB8130B670300A7F169 /* puremvc */,
289
+ );
290
+ path = org;
291
+ sourceTree = "<group>";
292
+ };
293
+ C5A9BAB8130B670300A7F169 /* puremvc */ = {
294
+ isa = PBXGroup;
295
+ children = (
296
+ C5A9BAB9130B670300A7F169 /* objectivec */,
297
+ );
298
+ path = puremvc;
299
+ sourceTree = "<group>";
300
+ };
301
+ C5A9BAB9130B670300A7F169 /* objectivec */ = {
302
+ isa = PBXGroup;
303
+ children = (
304
+ C5A9BABA130B670300A7F169 /* core */,
305
+ C5A9BAC1130B670300A7F169 /* interfaces */,
306
+ C5A9BACC130B670300A7F169 /* patterns */,
307
+ );
308
+ path = objectivec;
309
+ sourceTree = "<group>";
310
+ };
311
+ C5A9BABA130B670300A7F169 /* core */ = {
312
+ isa = PBXGroup;
313
+ children = (
314
+ C5A9BABB130B670300A7F169 /* Controller.h */,
315
+ C5A9BABC130B670300A7F169 /* Controller.m */,
316
+ C5A9BABD130B670300A7F169 /* Model.h */,
317
+ C5A9BABE130B670300A7F169 /* Model.m */,
318
+ C5A9BABF130B670300A7F169 /* View.h */,
319
+ C5A9BAC0130B670300A7F169 /* View.m */,
320
+ );
321
+ path = core;
322
+ sourceTree = "<group>";
323
+ };
324
+ C5A9BAC1130B670300A7F169 /* interfaces */ = {
325
+ isa = PBXGroup;
326
+ children = (
327
+ C5A9BAC2130B670300A7F169 /* ICommand.h */,
328
+ C5A9BAC3130B670300A7F169 /* IController.h */,
329
+ C5A9BAC4130B670300A7F169 /* IFacade.h */,
330
+ C5A9BAC5130B670300A7F169 /* IMediator.h */,
331
+ C5A9BAC6130B670300A7F169 /* IModel.h */,
332
+ C5A9BAC7130B670300A7F169 /* INotification.h */,
333
+ C5A9BAC8130B670300A7F169 /* INotifier.h */,
334
+ C5A9BAC9130B670300A7F169 /* IObserver.h */,
335
+ C5A9BACA130B670300A7F169 /* IProxy.h */,
336
+ C5A9BACB130B670300A7F169 /* IView.h */,
337
+ );
338
+ path = interfaces;
339
+ sourceTree = "<group>";
340
+ };
341
+ C5A9BACC130B670300A7F169 /* patterns */ = {
342
+ isa = PBXGroup;
343
+ children = (
344
+ C5A9BACD130B670300A7F169 /* command */,
345
+ C5A9BAD2130B670300A7F169 /* facade */,
346
+ C5A9BAD5130B670300A7F169 /* mediator */,
347
+ C5A9BAD8130B670300A7F169 /* observer */,
348
+ C5A9BADF130B670300A7F169 /* proxy */,
349
+ );
350
+ path = patterns;
351
+ sourceTree = "<group>";
352
+ };
353
+ C5A9BACD130B670300A7F169 /* command */ = {
354
+ isa = PBXGroup;
355
+ children = (
356
+ C5A9BACE130B670300A7F169 /* MacroCommand.h */,
357
+ C5A9BACF130B670300A7F169 /* MacroCommand.m */,
358
+ C5A9BAD0130B670300A7F169 /* SimpleCommand.h */,
359
+ C5A9BAD1130B670300A7F169 /* SimpleCommand.m */,
360
+ );
361
+ path = command;
362
+ sourceTree = "<group>";
363
+ };
364
+ C5A9BAD2130B670300A7F169 /* facade */ = {
365
+ isa = PBXGroup;
366
+ children = (
367
+ C5A9BAD3130B670300A7F169 /* Facade.h */,
368
+ C5A9BAD4130B670300A7F169 /* Facade.m */,
369
+ );
370
+ path = facade;
371
+ sourceTree = "<group>";
372
+ };
373
+ C5A9BAD5130B670300A7F169 /* mediator */ = {
374
+ isa = PBXGroup;
375
+ children = (
376
+ C5A9BAD6130B670300A7F169 /* Mediator.h */,
377
+ C5A9BAD7130B670300A7F169 /* Mediator.m */,
378
+ );
379
+ path = mediator;
380
+ sourceTree = "<group>";
381
+ };
382
+ C5A9BAD8130B670300A7F169 /* observer */ = {
383
+ isa = PBXGroup;
384
+ children = (
385
+ C5A9BAD9130B670300A7F169 /* Notification.h */,
386
+ C5A9BADA130B670300A7F169 /* Notification.m */,
387
+ C5A9BADB130B670300A7F169 /* Notifier.h */,
388
+ C5A9BADC130B670300A7F169 /* Notifier.m */,
389
+ C5A9BADD130B670300A7F169 /* Observer.h */,
390
+ C5A9BADE130B670300A7F169 /* Observer.m */,
391
+ );
392
+ path = observer;
393
+ sourceTree = "<group>";
394
+ };
395
+ C5A9BADF130B670300A7F169 /* proxy */ = {
396
+ isa = PBXGroup;
397
+ children = (
398
+ C5A9BAE0130B670300A7F169 /* Proxy.h */,
399
+ C5A9BAE1130B670300A7F169 /* Proxy.m */,
400
+ );
401
+ path = proxy;
402
+ sourceTree = "<group>";
403
+ };
404
+ /* End PBXGroup section */
405
+
406
+ /* Begin PBXNativeTarget section */
407
+ 1D6058900D05DD3D006BFB54 /* Contacts */ = {
408
+ isa = PBXNativeTarget;
409
+ buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Contacts" */;
410
+ buildPhases = (
411
+ 1D60588D0D05DD3D006BFB54 /* Resources */,
412
+ 1D60588E0D05DD3D006BFB54 /* Sources */,
413
+ 1D60588F0D05DD3D006BFB54 /* Frameworks */,
414
+ );
415
+ buildRules = (
416
+ );
417
+ dependencies = (
418
+ );
419
+ name = Contacts;
420
+ productName = EmployeeAdmin;
421
+ productReference = 1D6058910D05DD3D006BFB54 /* Contacts.app */;
422
+ productType = "com.apple.product-type.application";
423
+ };
424
+ /* End PBXNativeTarget section */
425
+
426
+ /* Begin PBXProject section */
427
+ 29B97313FDCFA39411CA2CEA /* Project object */ = {
428
+ isa = PBXProject;
429
+ buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Contacts" */;
430
+ compatibilityVersion = "Xcode 3.1";
431
+ developmentRegion = English;
432
+ hasScannedForEncodings = 1;
433
+ knownRegions = (
434
+ English,
435
+ Japanese,
436
+ French,
437
+ German,
438
+ );
439
+ mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
440
+ projectDirPath = "";
441
+ projectRoot = "";
442
+ targets = (
443
+ 1D6058900D05DD3D006BFB54 /* Contacts */,
444
+ );
445
+ };
446
+ /* End PBXProject section */
447
+
448
+ /* Begin PBXResourcesBuildPhase section */
449
+ 1D60588D0D05DD3D006BFB54 /* Resources */ = {
450
+ isa = PBXResourcesBuildPhase;
451
+ buildActionMask = 2147483647;
452
+ files = (
453
+ );
454
+ runOnlyForDeploymentPostprocessing = 0;
455
+ };
456
+ /* End PBXResourcesBuildPhase section */
457
+
458
+ /* Begin PBXSourcesBuildPhase section */
459
+ 1D60588E0D05DD3D006BFB54 /* Sources */ = {
460
+ isa = PBXSourcesBuildPhase;
461
+ buildActionMask = 2147483647;
462
+ files = (
463
+ 1D60589B0D05DD56006BFB54 /* main.m in Sources */,
464
+ 1D3623260D0F684500981E51 /* ContactsAppDelegate.m in Sources */,
465
+ C5A9BAE2130B670300A7F169 /* Controller.m in Sources */,
466
+ C5A9BAE3130B670300A7F169 /* Model.m in Sources */,
467
+ C5A9BAE4130B670300A7F169 /* View.m in Sources */,
468
+ C5A9BAE5130B670300A7F169 /* MacroCommand.m in Sources */,
469
+ C5A9BAE6130B670300A7F169 /* SimpleCommand.m in Sources */,
470
+ C5A9BAE7130B670300A7F169 /* Facade.m in Sources */,
471
+ C5A9BAE8130B670300A7F169 /* Mediator.m in Sources */,
472
+ C5A9BAE9130B670300A7F169 /* Notification.m in Sources */,
473
+ C5A9BAEA130B670300A7F169 /* Notifier.m in Sources */,
474
+ C5A9BAEB130B670300A7F169 /* Observer.m in Sources */,
475
+ C5A9BAEC130B670300A7F169 /* Proxy.m in Sources */,
476
+ C59074C213657FCD000E113F /* ApplicationFacade.m in Sources */,
477
+ C59074C313657FCD000E113F /* CreateUserCommand.m in Sources */,
478
+ C59074C413657FCD000E113F /* DeleteUserCommand.m in Sources */,
479
+ C59074C513657FCD000E113F /* GetUsersCommand.m in Sources */,
480
+ C59074C613657FCD000E113F /* StartupCommand.m in Sources */,
481
+ C59074C713657FCD000E113F /* UpdateUserCommand.m in Sources */,
482
+ C59074C813657FCD000E113F /* UserProxy.m in Sources */,
483
+ C59074C913657FCD000E113F /* UserVO.m in Sources */,
484
+ C59074CA13657FCD000E113F /* Contacts.m in Sources */,
485
+ C59074CB13657FCD000E113F /* UserForm.m in Sources */,
486
+ C59074CC13657FCD000E113F /* UserList.m in Sources */,
487
+ C59074CD13657FCD000E113F /* ContactsMediator.m in Sources */,
488
+ C59074CE13657FCD000E113F /* UserFormMediator.m in Sources */,
489
+ C59074CF13657FCD000E113F /* UserListMediator.m in Sources */,
490
+ );
491
+ runOnlyForDeploymentPostprocessing = 0;
492
+ };
493
+ /* End PBXSourcesBuildPhase section */
494
+
495
+ /* Begin XCBuildConfiguration section */
496
+ 1D6058940D05DD3E006BFB54 /* Debug */ = {
497
+ isa = XCBuildConfiguration;
498
+ buildSettings = {
499
+ ALWAYS_SEARCH_USER_PATHS = NO;
500
+ COPY_PHASE_STRIP = NO;
501
+ GCC_DYNAMIC_NO_PIC = NO;
502
+ GCC_OPTIMIZATION_LEVEL = 0;
503
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
504
+ GCC_PREFIX_HEADER = Contacts_Prefix.pch;
505
+ INFOPLIST_FILE = "Contacts-Info.plist";
506
+ PRODUCT_NAME = Contacts;
507
+ };
508
+ name = Debug;
509
+ };
510
+ 1D6058950D05DD3E006BFB54 /* Release */ = {
511
+ isa = XCBuildConfiguration;
512
+ buildSettings = {
513
+ ALWAYS_SEARCH_USER_PATHS = NO;
514
+ COPY_PHASE_STRIP = YES;
515
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
516
+ GCC_PREFIX_HEADER = Contacts_Prefix.pch;
517
+ INFOPLIST_FILE = "Contacts-Info.plist";
518
+ PRODUCT_NAME = Contacts;
519
+ VALIDATE_PRODUCT = YES;
520
+ };
521
+ name = Release;
522
+ };
523
+ C01FCF4F08A954540054247B /* Debug */ = {
524
+ isa = XCBuildConfiguration;
525
+ buildSettings = {
526
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
527
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
528
+ GCC_C_LANGUAGE_STANDARD = c99;
529
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
530
+ GCC_WARN_UNUSED_VARIABLE = YES;
531
+ PREBINDING = NO;
532
+ SDKROOT = iphoneos;
533
+ };
534
+ name = Debug;
535
+ };
536
+ C01FCF5008A954540054247B /* Release */ = {
537
+ isa = XCBuildConfiguration;
538
+ buildSettings = {
539
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
540
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
541
+ GCC_C_LANGUAGE_STANDARD = c99;
542
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
543
+ GCC_WARN_UNUSED_VARIABLE = YES;
544
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
545
+ PREBINDING = NO;
546
+ SDKROOT = iphoneos;
547
+ };
548
+ name = Release;
549
+ };
550
+ /* End XCBuildConfiguration section */
551
+
552
+ /* Begin XCConfigurationList section */
553
+ 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Contacts" */ = {
554
+ isa = XCConfigurationList;
555
+ buildConfigurations = (
556
+ 1D6058940D05DD3E006BFB54 /* Debug */,
557
+ 1D6058950D05DD3E006BFB54 /* Release */,
558
+ );
559
+ defaultConfigurationIsVisible = 0;
560
+ defaultConfigurationName = Release;
561
+ };
562
+ C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Contacts" */ = {
563
+ isa = XCConfigurationList;
564
+ buildConfigurations = (
565
+ C01FCF4F08A954540054247B /* Debug */,
566
+ C01FCF5008A954540054247B /* Release */,
567
+ );
568
+ defaultConfigurationIsVisible = 0;
569
+ defaultConfigurationName = Release;
570
+ };
571
+ /* End XCConfigurationList section */
572
+ };
573
+ rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
574
+ }