ykioscmd 0.6.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/.YKPodSpecConfig.yml +5 -0
  4. data/.idea/inspectionProfiles/Project_Default.xml +6 -0
  5. data/.idea/misc.xml +4 -0
  6. data/.idea/ruby-client.iml +38 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/.idea/workspace.xml +8388 -0
  9. data/.idea/yk_command.iml +105 -0
  10. data/.ruby-version +1 -0
  11. data/Gemfile +16 -0
  12. data/Gemfile.lock +153 -0
  13. data/README.html +109 -0
  14. data/README.md +104 -0
  15. data/Rakefile +4 -0
  16. data/bin/console +15 -0
  17. data/bin/setup +8 -0
  18. data/bin/ykioscmd +7 -0
  19. data/configruation-files/.YKBotConfig.yml +4 -0
  20. data/configruation-files/.YKGitlabConfig.yml +3 -0
  21. data/configruation-files/.YKProjectConfig.yml +4 -0
  22. data/configruation-files/.YKServerConfig.yml +3 -0
  23. data/debugProject/.DS_Store +0 -0
  24. data/images/Xnip2022-04-26_17-25-30.jpg +0 -0
  25. data/images/Xnip2022-04-26_17-27-32.jpg +0 -0
  26. data/images/Xnip2022-04-26_17-30-36.jpg +0 -0
  27. data/lib/.DS_Store +0 -0
  28. data/lib/yk_command/.DS_Store +0 -0
  29. data/lib/yk_command/analyze/analyze.rb +177 -0
  30. data/lib/yk_command/analyze/dependency_result.rb +138 -0
  31. data/lib/yk_command/analyze/request.rb +41 -0
  32. data/lib/yk_command/bot/wx_bot.rb +66 -0
  33. data/lib/yk_command/commands.rb +108 -0
  34. data/lib/yk_command/component_manage/component_manage_platform.rb +101 -0
  35. data/lib/yk_command/config/yk_config.rb +30 -0
  36. data/lib/yk_command/evaluate/evaluate.rb +7 -0
  37. data/lib/yk_command/gitlab/yk_gitlab.rb +77 -0
  38. data/lib/yk_command/module/.DS_Store +0 -0
  39. data/lib/yk_command/module/module_handler.rb +93 -0
  40. data/lib/yk_command/module/template/.DS_Store +0 -0
  41. data/lib/yk_command/module/template/objc/.DS_Store +0 -0
  42. data/lib/yk_command/module/template/objc/BusinessHeader.h +0 -0
  43. data/lib/yk_command/module/template/objc/CategoryHeader.h +12 -0
  44. data/lib/yk_command/module/template/objc/Helper.h +16 -0
  45. data/lib/yk_command/module/template/objc/Helper.m +41 -0
  46. data/lib/yk_command/module/template/objc/PrefixHeader.pch +30 -0
  47. data/lib/yk_command/module/template/objc/RouterRegister.h +16 -0
  48. data/lib/yk_command/module/template/objc/RouterRegister.m +26 -0
  49. data/lib/yk_command/module/template/objc/ServiceRegister.h +16 -0
  50. data/lib/yk_command/module/template/objc/ServiceRegister.m +21 -0
  51. data/lib/yk_command/module/template/objc/ToolsHeader.h +13 -0
  52. data/lib/yk_command/module/template/objc/VendorHeader.h +13 -0
  53. data/lib/yk_command/module/template/swift/.DS_Store +0 -0
  54. data/lib/yk_command/module/template/swift/PrefixHeader_swift.swift +10 -0
  55. data/lib/yk_command/module/template/swift/RouterRegisterSwift.swift +23 -0
  56. data/lib/yk_command/module/template/swift/ServiceRegisterSwift.swift +20 -0
  57. data/lib/yk_command/module/template/swift/Tool.swift +53 -0
  58. data/lib/yk_command/module/yk_module.rb +215 -0
  59. data/lib/yk_command/project/.DS_Store +0 -0
  60. data/lib/yk_command/project/full_component_demo_template/.gitignore +37 -0
  61. data/lib/yk_command/project/full_component_demo_template/.travis.yml +14 -0
  62. data/lib/yk_command/project/full_component_demo_template/CODE_OF_CONDUCT.md +40 -0
  63. data/lib/yk_command/project/full_component_demo_template/LICENSE +21 -0
  64. data/lib/yk_command/project/full_component_demo_template/NAME-osx.podspec +43 -0
  65. data/lib/yk_command/project/full_component_demo_template/NAME.podspec +151 -0
  66. data/lib/yk_command/project/full_component_demo_template/POD_LICENSE +19 -0
  67. data/lib/yk_command/project/full_component_demo_template/POD_README.md +29 -0
  68. data/lib/yk_command/project/full_component_demo_template/Pod/Assets/.gitkeep +0 -0
  69. data/lib/yk_command/project/full_component_demo_template/Pod/Classes/.gitkeep +0 -0
  70. data/lib/yk_command/project/full_component_demo_template/README.md +22 -0
  71. data/lib/yk_command/project/full_component_demo_template/configure +12 -0
  72. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +31 -0
  73. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +79 -0
  74. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.h +15 -0
  75. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.m +46 -0
  76. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.h +13 -0
  77. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.m +47 -0
  78. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +98 -0
  79. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Info.plist +49 -0
  80. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +16 -0
  81. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +2 -0
  82. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/main.m +17 -0
  83. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +500 -0
  84. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  85. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  86. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +101 -0
  87. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/Podfile +34 -0
  88. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/Tests-Info.plist +22 -0
  89. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/Tests-Prefix.pch +7 -0
  90. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/Tests.m +9 -0
  91. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +2 -0
  92. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/AppDelegate.swift +26 -0
  93. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  94. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +717 -0
  95. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/Info.plist +30 -0
  96. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +10 -0
  97. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/ViewController.swift +27 -0
  98. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +444 -0
  99. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  100. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +103 -0
  101. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/Podfile +11 -0
  102. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/Tests/Info.plist +22 -0
  103. data/lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/Tests/Tests.swift +1 -0
  104. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/AppDelegate.swift +46 -0
  105. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +46 -0
  106. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +86 -0
  107. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Example-Bridging-Header.h +4 -0
  108. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  109. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Info.plist +39 -0
  110. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/STTestAppDelegate.swift +16 -0
  111. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Tests-Bridging-Header.h +4 -0
  112. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/ViewController.swift +51 -0
  113. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/YKEmptyOcFile.m +9 -0
  114. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +489 -0
  115. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  116. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  117. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +117 -0
  118. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile +35 -0
  119. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/Tests/Info.plist +24 -0
  120. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/Tests/Tests.swift +1 -0
  121. data/lib/yk_command/project/setup/ConfigureMacOSSwift.rb +46 -0
  122. data/lib/yk_command/project/setup/ConfigureSwift.rb +42 -0
  123. data/lib/yk_command/project/setup/ConfigureiOS.rb +106 -0
  124. data/lib/yk_command/project/setup/MessageBank.rb +113 -0
  125. data/lib/yk_command/project/setup/ProjectManipulator.rb +141 -0
  126. data/lib/yk_command/project/setup/TemplateConfigurator.rb +258 -0
  127. data/lib/yk_command/project/simple_component_demo_template/.gitignore +37 -0
  128. data/lib/yk_command/project/simple_component_demo_template/.travis.yml +14 -0
  129. data/lib/yk_command/project/simple_component_demo_template/CODE_OF_CONDUCT.md +40 -0
  130. data/lib/yk_command/project/simple_component_demo_template/LICENSE +21 -0
  131. data/lib/yk_command/project/simple_component_demo_template/NAME-osx.podspec +43 -0
  132. data/lib/yk_command/project/simple_component_demo_template/NAME.podspec +140 -0
  133. data/lib/yk_command/project/simple_component_demo_template/POD_LICENSE +19 -0
  134. data/lib/yk_command/project/simple_component_demo_template/POD_README.md +29 -0
  135. data/lib/yk_command/project/simple_component_demo_template/Pod/Assets/.gitkeep +0 -0
  136. data/lib/yk_command/project/simple_component_demo_template/Pod/Classes/.gitkeep +0 -0
  137. data/lib/yk_command/project/simple_component_demo_template/README.md +22 -0
  138. data/lib/yk_command/project/simple_component_demo_template/configure +13 -0
  139. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +31 -0
  140. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +79 -0
  141. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.h +15 -0
  142. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.m +46 -0
  143. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.h +13 -0
  144. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.m +37 -0
  145. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +98 -0
  146. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Info.plist +49 -0
  147. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +16 -0
  148. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +2 -0
  149. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/main.m +17 -0
  150. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +500 -0
  151. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  152. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  153. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +101 -0
  154. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Podfile +19 -0
  155. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/Tests-Info.plist +22 -0
  156. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/Tests-Prefix.pch +7 -0
  157. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/Tests.m +9 -0
  158. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +2 -0
  159. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/AppDelegate.swift +26 -0
  160. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  161. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +717 -0
  162. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/Info.plist +30 -0
  163. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +10 -0
  164. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/ViewController.swift +27 -0
  165. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +444 -0
  166. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  167. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +103 -0
  168. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/Podfile +11 -0
  169. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/Tests/Info.plist +22 -0
  170. data/lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/Tests/Tests.swift +1 -0
  171. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/AppDelegate.swift +46 -0
  172. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +46 -0
  173. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +103 -0
  174. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/EmptyOcFile.m +9 -0
  175. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  176. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Info.plist +39 -0
  177. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/PROJECT_Example-Bridging-Header.h +4 -0
  178. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/PROJECT_Tests-Bridging-Header.h +4 -0
  179. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/ViewController.swift +32 -0
  180. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +489 -0
  181. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  182. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  183. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +117 -0
  184. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/Podfile +20 -0
  185. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/Tests/Info.plist +24 -0
  186. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/Tests/Tests.swift +1 -0
  187. data/lib/yk_command/project/test_examples/kiwi.m +36 -0
  188. data/lib/yk_command/project/test_examples/quick.swift +50 -0
  189. data/lib/yk_command/project/test_examples/specta.m +39 -0
  190. data/lib/yk_command/project/test_examples/xctest.m +26 -0
  191. data/lib/yk_command/project/test_examples/xctest.swift +28 -0
  192. data/lib/yk_command/project/yk_project.rb +92 -0
  193. data/lib/yk_command/repo_publish/component_default.yml +5 -0
  194. data/lib/yk_command/repo_publish/component_publish.rb +218 -0
  195. data/lib/yk_command/version.rb +5 -0
  196. data/lib/ykioscmd.rb +9 -0
  197. data/ykioscmd.gemspec +53 -0
  198. metadata +453 -0
@@ -0,0 +1,500 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
11
+ 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
12
+ 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
13
+ 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
14
+ 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
15
+ 6003F59E195388D20070C39A /* CPDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* CPDAppDelegate.m */; };
16
+ 6003F5A7195388D20070C39A /* CPDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* CPDViewController.m */; };
17
+ 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
18
+ 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
19
+ 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
20
+ 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
21
+ 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
22
+ 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
23
+ 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
24
+ 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
25
+ /* End PBXBuildFile section */
26
+
27
+ /* Begin PBXContainerItemProxy section */
28
+ 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
29
+ isa = PBXContainerItemProxy;
30
+ containerPortal = 6003F582195388D10070C39A /* Project object */;
31
+ proxyType = 1;
32
+ remoteGlobalIDString = 6003F589195388D20070C39A;
33
+ remoteInfo = "PROJECT";
34
+ };
35
+ /* End PBXContainerItemProxy section */
36
+
37
+ /* Begin PBXFileReference section */
38
+ 6003F58A195388D20070C39A /* PROJECT_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PROJECT_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
40
+ 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
41
+ 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
42
+ 6003F595195388D20070C39A /* PROJECT-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "PROJECT-Info.plist"; sourceTree = "<group>"; };
43
+ 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
44
+ 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
45
+ 6003F59B195388D20070C39A /* PROJECT-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PROJECT-Prefix.pch"; sourceTree = "<group>"; };
46
+ 6003F59C195388D20070C39A /* CPDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPDAppDelegate.h; sourceTree = "<group>"; };
47
+ 6003F59D195388D20070C39A /* CPDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPDAppDelegate.m; sourceTree = "<group>"; };
48
+ 6003F5A5195388D20070C39A /* CPDViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPDViewController.h; sourceTree = "<group>"; };
49
+ 6003F5A6195388D20070C39A /* CPDViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPDViewController.m; sourceTree = "<group>"; };
50
+ 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
51
+ 6003F5AE195388D20070C39A /* PROJECT_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PROJECT_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
52
+ 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
53
+ 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
54
+ 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
55
+ 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
56
+ 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
57
+ 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
58
+ 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
59
+ /* End PBXFileReference section */
60
+
61
+ /* Begin PBXFrameworksBuildPhase section */
62
+ 6003F587195388D20070C39A /* Frameworks */ = {
63
+ isa = PBXFrameworksBuildPhase;
64
+ buildActionMask = 2147483647;
65
+ files = (
66
+ 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
67
+ 6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
68
+ 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
69
+ );
70
+ runOnlyForDeploymentPostprocessing = 0;
71
+ };
72
+ 6003F5AB195388D20070C39A /* Frameworks */ = {
73
+ isa = PBXFrameworksBuildPhase;
74
+ buildActionMask = 2147483647;
75
+ files = (
76
+ 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
77
+ 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
78
+ 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
79
+ );
80
+ runOnlyForDeploymentPostprocessing = 0;
81
+ };
82
+ /* End PBXFrameworksBuildPhase section */
83
+
84
+ /* Begin PBXGroup section */
85
+ 6003F581195388D10070C39A = {
86
+ isa = PBXGroup;
87
+ children = (
88
+ 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
89
+ 6003F593195388D20070C39A /* Example for PROJECT */,
90
+ 6003F5B5195388D20070C39A /* Tests */,
91
+ 6003F58C195388D20070C39A /* Frameworks */,
92
+ 6003F58B195388D20070C39A /* Products */,
93
+ );
94
+ sourceTree = "<group>";
95
+ };
96
+ 6003F58B195388D20070C39A /* Products */ = {
97
+ isa = PBXGroup;
98
+ children = (
99
+ 6003F58A195388D20070C39A /* PROJECT_Example.app */,
100
+ 6003F5AE195388D20070C39A /* PROJECT_Tests.xctest */,
101
+ );
102
+ name = Products;
103
+ sourceTree = "<group>";
104
+ };
105
+ 6003F58C195388D20070C39A /* Frameworks */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ 6003F58D195388D20070C39A /* Foundation.framework */,
109
+ 6003F58F195388D20070C39A /* CoreGraphics.framework */,
110
+ 6003F591195388D20070C39A /* UIKit.framework */,
111
+ 6003F5AF195388D20070C39A /* XCTest.framework */,
112
+ );
113
+ name = Frameworks;
114
+ sourceTree = "<group>";
115
+ };
116
+ 6003F593195388D20070C39A /* Example for PROJECT */ = {
117
+ isa = PBXGroup;
118
+ children = (
119
+ 6003F59C195388D20070C39A /* CPDAppDelegate.h */,
120
+ 6003F59D195388D20070C39A /* CPDAppDelegate.m */,
121
+ 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
122
+ 6003F5A5195388D20070C39A /* CPDViewController.h */,
123
+ 6003F5A6195388D20070C39A /* CPDViewController.m */,
124
+ 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
125
+ 6003F5A8195388D20070C39A /* Images.xcassets */,
126
+ 6003F594195388D20070C39A /* Supporting Files */,
127
+ );
128
+ name = "Example for PROJECT";
129
+ path = "PROJECT";
130
+ sourceTree = "<group>";
131
+ };
132
+ 6003F594195388D20070C39A /* Supporting Files */ = {
133
+ isa = PBXGroup;
134
+ children = (
135
+ 6003F595195388D20070C39A /* PROJECT-Info.plist */,
136
+ 6003F596195388D20070C39A /* InfoPlist.strings */,
137
+ 6003F599195388D20070C39A /* main.m */,
138
+ 6003F59B195388D20070C39A /* PROJECT-Prefix.pch */,
139
+ );
140
+ name = "Supporting Files";
141
+ sourceTree = "<group>";
142
+ };
143
+ 6003F5B5195388D20070C39A /* Tests */ = {
144
+ isa = PBXGroup;
145
+ children = (
146
+ 6003F5BB195388D20070C39A /* Tests.m */,
147
+ 6003F5B6195388D20070C39A /* Supporting Files */,
148
+ );
149
+ path = Tests;
150
+ sourceTree = "<group>";
151
+ };
152
+ 6003F5B6195388D20070C39A /* Supporting Files */ = {
153
+ isa = PBXGroup;
154
+ children = (
155
+ 6003F5B7195388D20070C39A /* Tests-Info.plist */,
156
+ 6003F5B8195388D20070C39A /* InfoPlist.strings */,
157
+ 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
158
+ );
159
+ name = "Supporting Files";
160
+ sourceTree = "<group>";
161
+ };
162
+ 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
163
+ isa = PBXGroup;
164
+ children = (
165
+ );
166
+ name = "Podspec Metadata";
167
+ sourceTree = "<group>";
168
+ };
169
+ /* End PBXGroup section */
170
+
171
+ /* Begin PBXNativeTarget section */
172
+ 6003F589195388D20070C39A /* PROJECT_Example */ = {
173
+ isa = PBXNativeTarget;
174
+ buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Example" */;
175
+ buildPhases = (
176
+ 6003F586195388D20070C39A /* Sources */,
177
+ 6003F587195388D20070C39A /* Frameworks */,
178
+ 6003F588195388D20070C39A /* Resources */,
179
+ );
180
+ buildRules = (
181
+ );
182
+ dependencies = (
183
+ );
184
+ name = "PROJECT_Example";
185
+ productName = "PROJECT";
186
+ productReference = 6003F58A195388D20070C39A /* PROJECT_Example.app */;
187
+ productType = "com.apple.product-type.application";
188
+ };
189
+ 6003F5AD195388D20070C39A /* PROJECT_Tests */ = {
190
+ isa = PBXNativeTarget;
191
+ buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */;
192
+ buildPhases = (
193
+ 6003F5AA195388D20070C39A /* Sources */,
194
+ 6003F5AB195388D20070C39A /* Frameworks */,
195
+ 6003F5AC195388D20070C39A /* Resources */,
196
+ );
197
+ buildRules = (
198
+ );
199
+ dependencies = (
200
+ 6003F5B4195388D20070C39A /* PBXTargetDependency */,
201
+ );
202
+ name = "PROJECT_Tests";
203
+ productName = "PROJECTTests";
204
+ productReference = 6003F5AE195388D20070C39A /* PROJECT_Tests.xctest */;
205
+ productType = "com.apple.product-type.bundle.unit-test";
206
+ };
207
+ /* End PBXNativeTarget section */
208
+
209
+ /* Begin PBXProject section */
210
+ 6003F582195388D10070C39A /* Project object */ = {
211
+ isa = PBXProject;
212
+ attributes = {
213
+ CLASSPREFIX = CPD;
214
+ LastUpgradeCheck = 0720;
215
+ ORGANIZATIONNAME = "PROJECT_OWNER";
216
+ TargetAttributes = {
217
+ 6003F5AD195388D20070C39A = {
218
+ TestTargetID = 6003F589195388D20070C39A;
219
+ };
220
+ };
221
+ };
222
+ buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "PROJECT" */;
223
+ compatibilityVersion = "Xcode 3.2";
224
+ developmentRegion = English;
225
+ hasScannedForEncodings = 0;
226
+ knownRegions = (
227
+ en,
228
+ Base,
229
+ );
230
+ mainGroup = 6003F581195388D10070C39A;
231
+ productRefGroup = 6003F58B195388D20070C39A /* Products */;
232
+ projectDirPath = "";
233
+ projectRoot = "";
234
+ targets = (
235
+ 6003F589195388D20070C39A /* PROJECT_Example */,
236
+ 6003F5AD195388D20070C39A /* PROJECT_Tests */,
237
+ );
238
+ };
239
+ /* End PBXProject section */
240
+
241
+ /* Begin PBXResourcesBuildPhase section */
242
+ 6003F588195388D20070C39A /* Resources */ = {
243
+ isa = PBXResourcesBuildPhase;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
247
+ 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
248
+ 6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
249
+ 6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
250
+ );
251
+ runOnlyForDeploymentPostprocessing = 0;
252
+ };
253
+ 6003F5AC195388D20070C39A /* Resources */ = {
254
+ isa = PBXResourcesBuildPhase;
255
+ buildActionMask = 2147483647;
256
+ files = (
257
+ 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
258
+ );
259
+ runOnlyForDeploymentPostprocessing = 0;
260
+ };
261
+ /* End PBXResourcesBuildPhase section */
262
+
263
+ /* Begin PBXSourcesBuildPhase section */
264
+ 6003F586195388D20070C39A /* Sources */ = {
265
+ isa = PBXSourcesBuildPhase;
266
+ buildActionMask = 2147483647;
267
+ files = (
268
+ 6003F59E195388D20070C39A /* CPDAppDelegate.m in Sources */,
269
+ 6003F5A7195388D20070C39A /* CPDViewController.m in Sources */,
270
+ 6003F59A195388D20070C39A /* main.m in Sources */,
271
+ );
272
+ runOnlyForDeploymentPostprocessing = 0;
273
+ };
274
+ 6003F5AA195388D20070C39A /* Sources */ = {
275
+ isa = PBXSourcesBuildPhase;
276
+ buildActionMask = 2147483647;
277
+ files = (
278
+ 6003F5BC195388D20070C39A /* Tests.m in Sources */,
279
+ );
280
+ runOnlyForDeploymentPostprocessing = 0;
281
+ };
282
+ /* End PBXSourcesBuildPhase section */
283
+
284
+ /* Begin PBXTargetDependency section */
285
+ 6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
286
+ isa = PBXTargetDependency;
287
+ target = 6003F589195388D20070C39A /* PROJECT_Example */;
288
+ targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
289
+ };
290
+ /* End PBXTargetDependency section */
291
+
292
+ /* Begin PBXVariantGroup section */
293
+ 6003F596195388D20070C39A /* InfoPlist.strings */ = {
294
+ isa = PBXVariantGroup;
295
+ children = (
296
+ 6003F597195388D20070C39A /* en */,
297
+ );
298
+ name = InfoPlist.strings;
299
+ sourceTree = "<group>";
300
+ };
301
+ 6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
302
+ isa = PBXVariantGroup;
303
+ children = (
304
+ 6003F5B9195388D20070C39A /* en */,
305
+ );
306
+ name = InfoPlist.strings;
307
+ sourceTree = "<group>";
308
+ };
309
+ 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
310
+ isa = PBXVariantGroup;
311
+ children = (
312
+ 71719F9E1E33DC2100824A3D /* Base */,
313
+ );
314
+ name = LaunchScreen.storyboard;
315
+ sourceTree = "<group>";
316
+ };
317
+ /* End PBXVariantGroup section */
318
+
319
+ /* Begin XCBuildConfiguration section */
320
+ 6003F5BD195388D20070C39A /* Debug */ = {
321
+ isa = XCBuildConfiguration;
322
+ buildSettings = {
323
+ ALWAYS_SEARCH_USER_PATHS = NO;
324
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
325
+ CLANG_CXX_LIBRARY = "libc++";
326
+ CLANG_ENABLE_MODULES = YES;
327
+ CLANG_ENABLE_OBJC_ARC = YES;
328
+ CLANG_WARN_BOOL_CONVERSION = YES;
329
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
330
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
331
+ CLANG_WARN_EMPTY_BODY = YES;
332
+ CLANG_WARN_ENUM_CONVERSION = YES;
333
+ CLANG_WARN_INT_CONVERSION = YES;
334
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
335
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
336
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
337
+ COPY_PHASE_STRIP = NO;
338
+ ENABLE_TESTABILITY = YES;
339
+ GCC_C_LANGUAGE_STANDARD = gnu99;
340
+ GCC_DYNAMIC_NO_PIC = NO;
341
+ GCC_OPTIMIZATION_LEVEL = 0;
342
+ GCC_PREPROCESSOR_DEFINITIONS = (
343
+ "DEBUG=1",
344
+ "$(inherited)",
345
+ );
346
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
347
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
348
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
349
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
350
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
351
+ GCC_WARN_UNUSED_FUNCTION = YES;
352
+ GCC_WARN_UNUSED_VARIABLE = YES;
353
+ IPHONEOS_DEPLOYMENT_TARGET = 9.3;
354
+ ONLY_ACTIVE_ARCH = YES;
355
+ SDKROOT = iphoneos;
356
+ TARGETED_DEVICE_FAMILY = "1,2";
357
+ };
358
+ name = Debug;
359
+ };
360
+ 6003F5BE195388D20070C39A /* Release */ = {
361
+ isa = XCBuildConfiguration;
362
+ buildSettings = {
363
+ ALWAYS_SEARCH_USER_PATHS = NO;
364
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
365
+ CLANG_CXX_LIBRARY = "libc++";
366
+ CLANG_ENABLE_MODULES = YES;
367
+ CLANG_ENABLE_OBJC_ARC = YES;
368
+ CLANG_WARN_BOOL_CONVERSION = YES;
369
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
370
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
371
+ CLANG_WARN_EMPTY_BODY = YES;
372
+ CLANG_WARN_ENUM_CONVERSION = YES;
373
+ CLANG_WARN_INT_CONVERSION = YES;
374
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
375
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
376
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
377
+ COPY_PHASE_STRIP = YES;
378
+ ENABLE_NS_ASSERTIONS = NO;
379
+ GCC_C_LANGUAGE_STANDARD = gnu99;
380
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
381
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
382
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
383
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
384
+ GCC_WARN_UNUSED_FUNCTION = YES;
385
+ GCC_WARN_UNUSED_VARIABLE = YES;
386
+ IPHONEOS_DEPLOYMENT_TARGET = 9.3;
387
+ SDKROOT = iphoneos;
388
+ TARGETED_DEVICE_FAMILY = "1,2";
389
+ VALIDATE_PRODUCT = YES;
390
+ };
391
+ name = Release;
392
+ };
393
+ 6003F5C0195388D20070C39A /* Debug */ = {
394
+ isa = XCBuildConfiguration;
395
+ buildSettings = {
396
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
397
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
398
+ GCC_PREFIX_HEADER = "PROJECT/PROJECT-Prefix.pch";
399
+ INFOPLIST_FILE = "PROJECT/PROJECT-Info.plist";
400
+ MODULE_NAME = ExampleApp;
401
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
402
+ PRODUCT_NAME = "$(TARGET_NAME)";
403
+ SWIFT_VERSION = 4.0;
404
+ WRAPPER_EXTENSION = app;
405
+ };
406
+ name = Debug;
407
+ };
408
+ 6003F5C1195388D20070C39A /* Release */ = {
409
+ isa = XCBuildConfiguration;
410
+ buildSettings = {
411
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
412
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
413
+ GCC_PREFIX_HEADER = "PROJECT/PROJECT-Prefix.pch";
414
+ INFOPLIST_FILE = "PROJECT/PROJECT-Info.plist";
415
+ MODULE_NAME = ExampleApp;
416
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
417
+ PRODUCT_NAME = "$(TARGET_NAME)";
418
+ SWIFT_VERSION = 4.0;
419
+ WRAPPER_EXTENSION = app;
420
+ };
421
+ name = Release;
422
+ };
423
+ 6003F5C3195388D20070C39A /* Debug */ = {
424
+ isa = XCBuildConfiguration;
425
+ buildSettings = {
426
+ BUNDLE_LOADER = "$(TEST_HOST)";
427
+ FRAMEWORK_SEARCH_PATHS = (
428
+ "$(PLATFORM_DIR)/Developer/Library/Frameworks",
429
+ "$(inherited)",
430
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
431
+ );
432
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
433
+ GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
434
+ GCC_PREPROCESSOR_DEFINITIONS = (
435
+ "DEBUG=1",
436
+ "$(inherited)",
437
+ );
438
+ INFOPLIST_FILE = "Tests/Tests-Info.plist";
439
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
440
+ PRODUCT_NAME = "$(TARGET_NAME)";
441
+ SWIFT_VERSION = 4.0;
442
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
443
+ WRAPPER_EXTENSION = xctest;
444
+ };
445
+ name = Debug;
446
+ };
447
+ 6003F5C4195388D20070C39A /* Release */ = {
448
+ isa = XCBuildConfiguration;
449
+ buildSettings = {
450
+ BUNDLE_LOADER = "$(TEST_HOST)";
451
+ FRAMEWORK_SEARCH_PATHS = (
452
+ "$(PLATFORM_DIR)/Developer/Library/Frameworks",
453
+ "$(inherited)",
454
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
455
+ );
456
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
457
+ GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
458
+ INFOPLIST_FILE = "Tests/Tests-Info.plist";
459
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
460
+ PRODUCT_NAME = "$(TARGET_NAME)";
461
+ SWIFT_VERSION = 4.0;
462
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
463
+ WRAPPER_EXTENSION = xctest;
464
+ };
465
+ name = Release;
466
+ };
467
+ /* End XCBuildConfiguration section */
468
+
469
+ /* Begin XCConfigurationList section */
470
+ 6003F585195388D10070C39A /* Build configuration list for PBXProject "PROJECT" */ = {
471
+ isa = XCConfigurationList;
472
+ buildConfigurations = (
473
+ 6003F5BD195388D20070C39A /* Debug */,
474
+ 6003F5BE195388D20070C39A /* Release */,
475
+ );
476
+ defaultConfigurationIsVisible = 0;
477
+ defaultConfigurationName = Release;
478
+ };
479
+ 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Example" */ = {
480
+ isa = XCConfigurationList;
481
+ buildConfigurations = (
482
+ 6003F5C0195388D20070C39A /* Debug */,
483
+ 6003F5C1195388D20070C39A /* Release */,
484
+ );
485
+ defaultConfigurationIsVisible = 0;
486
+ defaultConfigurationName = Release;
487
+ };
488
+ 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */ = {
489
+ isa = XCConfigurationList;
490
+ buildConfigurations = (
491
+ 6003F5C3195388D20070C39A /* Debug */,
492
+ 6003F5C4195388D20070C39A /* Release */,
493
+ );
494
+ defaultConfigurationIsVisible = 0;
495
+ defaultConfigurationName = Release;
496
+ };
497
+ /* End XCConfigurationList section */
498
+ };
499
+ rootObject = 6003F582195388D10070C39A /* Project object */;
500
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:PROJECT.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,101 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0720"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "6003F589195388D20070C39A"
18
+ BuildableName = "PROJECT_Example.app"
19
+ BlueprintName = "PROJECT_Example"
20
+ ReferencedContainer = "container:PROJECT.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ <TestableReference
32
+ skipped = "NO">
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "6003F5AD195388D20070C39A"
36
+ BuildableName = "PROJECT_Tests.xctest"
37
+ BlueprintName = "PROJECT_Tests"
38
+ ReferencedContainer = "container:PROJECT.xcodeproj">
39
+ </BuildableReference>
40
+ </TestableReference>
41
+ </Testables>
42
+ <MacroExpansion>
43
+ <BuildableReference
44
+ BuildableIdentifier = "primary"
45
+ BlueprintIdentifier = "6003F589195388D20070C39A"
46
+ BuildableName = "PROJECT_Example.app"
47
+ BlueprintName = "PROJECT_Example"
48
+ ReferencedContainer = "container:PROJECT.xcodeproj">
49
+ </BuildableReference>
50
+ </MacroExpansion>
51
+ <AdditionalOptions>
52
+ </AdditionalOptions>
53
+ </TestAction>
54
+ <LaunchAction
55
+ buildConfiguration = "Debug"
56
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
57
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
58
+ launchStyle = "0"
59
+ useCustomWorkingDirectory = "NO"
60
+ ignoresPersistentStateOnLaunch = "NO"
61
+ debugDocumentVersioning = "YES"
62
+ debugServiceExtension = "internal"
63
+ allowLocationSimulation = "YES">
64
+ <BuildableProductRunnable
65
+ runnableDebuggingMode = "0">
66
+ <BuildableReference
67
+ BuildableIdentifier = "primary"
68
+ BlueprintIdentifier = "6003F589195388D20070C39A"
69
+ BuildableName = "PROJECT_Example.app"
70
+ BlueprintName = "PROJECT_Example"
71
+ ReferencedContainer = "container:PROJECT.xcodeproj">
72
+ </BuildableReference>
73
+ </BuildableProductRunnable>
74
+ <AdditionalOptions>
75
+ </AdditionalOptions>
76
+ </LaunchAction>
77
+ <ProfileAction
78
+ buildConfiguration = "Release"
79
+ shouldUseLaunchSchemeArgsEnv = "YES"
80
+ savedToolIdentifier = ""
81
+ useCustomWorkingDirectory = "NO"
82
+ debugDocumentVersioning = "YES">
83
+ <BuildableProductRunnable
84
+ runnableDebuggingMode = "0">
85
+ <BuildableReference
86
+ BuildableIdentifier = "primary"
87
+ BlueprintIdentifier = "6003F589195388D20070C39A"
88
+ BuildableName = "PROJECT_Example.app"
89
+ BlueprintName = "PROJECT_Example"
90
+ ReferencedContainer = "container:PROJECT.xcodeproj">
91
+ </BuildableReference>
92
+ </BuildableProductRunnable>
93
+ </ProfileAction>
94
+ <AnalyzeAction
95
+ buildConfiguration = "Debug">
96
+ </AnalyzeAction>
97
+ <ArchiveAction
98
+ buildConfiguration = "Release"
99
+ revealArchiveInOrganizer = "YES">
100
+ </ArchiveAction>
101
+ </Scheme>
@@ -0,0 +1,34 @@
1
+
2
+ platform :ios, '10.0'
3
+
4
+ inhibit_all_warnings!
5
+ use_modular_headers!
6
+ use_frameworks! :linkage => :static
7
+
8
+
9
+ #pod_install hook
10
+ post_install do |installer|
11
+
12
+ # 单个target编辑配置
13
+ installer.pods_project.targets.each do |target|
14
+ target.build_configurations.each do |config|
15
+ #config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
16
+
17
+ config.build_settings['PRODUCT_BUNDLE_IDENTIFIER'] = "org.cocoapods.${PRODUCT_NAME}"
18
+ config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
19
+ config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
20
+ config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
21
+ end
22
+ end
23
+
24
+ end
25
+
26
+ target '${POD_NAME}_Example' do
27
+ pod '${POD_NAME}', :path => '../'
28
+
29
+ target '${POD_NAME}_Tests' do
30
+ inherit! :search_paths
31
+
32
+ ${INCLUDED_PODS}
33
+ end
34
+ end
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>${EXECUTABLE_NAME}</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundlePackageType</key>
14
+ <string>BNDL</string>
15
+ <key>CFBundleShortVersionString</key>
16
+ <string>1.0</string>
17
+ <key>CFBundleSignature</key>
18
+ <string>????</string>
19
+ <key>CFBundleVersion</key>
20
+ <string>1</string>
21
+ </dict>
22
+ </plist>