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,489 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
11
+ 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };
12
+ 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };
13
+ 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
14
+ 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
15
+ 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
16
+ DCDBF743291BADFD001CC26D /* YKEmptyOcFile.m in Sources */ = {isa = PBXBuildFile; fileRef = DCDBF742291BADFD001CC26D /* YKEmptyOcFile.m */; };
17
+ DCDBF744291BADFD001CC26D /* YKEmptyOcFile.m in Sources */ = {isa = PBXBuildFile; fileRef = DCDBF742291BADFD001CC26D /* YKEmptyOcFile.m */; };
18
+ /* End PBXBuildFile section */
19
+
20
+ /* Begin PBXContainerItemProxy section */
21
+ 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {
22
+ isa = PBXContainerItemProxy;
23
+ containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
24
+ proxyType = 1;
25
+ remoteGlobalIDString = 607FACCF1AFB9204008FA782;
26
+ remoteInfo = PROJECT;
27
+ };
28
+ /* End PBXContainerItemProxy section */
29
+
30
+ /* Begin PBXFileReference section */
31
+ 607FACD01AFB9204008FA782 /* PROJECT_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PROJECT_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
32
+ 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
33
+ 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
34
+ 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
35
+ 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
36
+ 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
37
+ 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
38
+ 607FACE51AFB9204008FA782 /* PROJECT_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PROJECT_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
40
+ 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
41
+ DCDBF740291BADFD001CC26D /* Example-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Example-Bridging-Header.h"; sourceTree = "<group>"; };
42
+ DCDBF741291BADFD001CC26D /* Tests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Bridging-Header.h"; sourceTree = "<group>"; };
43
+ DCDBF742291BADFD001CC26D /* YKEmptyOcFile.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YKEmptyOcFile.m; sourceTree = "<group>"; };
44
+ /* End PBXFileReference section */
45
+
46
+ /* Begin PBXFrameworksBuildPhase section */
47
+ 607FACCD1AFB9204008FA782 /* Frameworks */ = {
48
+ isa = PBXFrameworksBuildPhase;
49
+ buildActionMask = 2147483647;
50
+ files = (
51
+ );
52
+ runOnlyForDeploymentPostprocessing = 0;
53
+ };
54
+ 607FACE21AFB9204008FA782 /* Frameworks */ = {
55
+ isa = PBXFrameworksBuildPhase;
56
+ buildActionMask = 2147483647;
57
+ files = (
58
+ );
59
+ runOnlyForDeploymentPostprocessing = 0;
60
+ };
61
+ /* End PBXFrameworksBuildPhase section */
62
+
63
+ /* Begin PBXGroup section */
64
+ 607FACC71AFB9204008FA782 = {
65
+ isa = PBXGroup;
66
+ children = (
67
+ 607FACF51AFB993E008FA782 /* Podspec Metadata */,
68
+ 607FACD21AFB9204008FA782 /* Example for PROJECT */,
69
+ 607FACE81AFB9204008FA782 /* Tests */,
70
+ 607FACD11AFB9204008FA782 /* Products */,
71
+ );
72
+ sourceTree = "<group>";
73
+ };
74
+ 607FACD11AFB9204008FA782 /* Products */ = {
75
+ isa = PBXGroup;
76
+ children = (
77
+ 607FACD01AFB9204008FA782 /* PROJECT_Example.app */,
78
+ 607FACE51AFB9204008FA782 /* PROJECT_Tests.xctest */,
79
+ );
80
+ name = Products;
81
+ sourceTree = "<group>";
82
+ };
83
+ 607FACD21AFB9204008FA782 /* Example for PROJECT */ = {
84
+ isa = PBXGroup;
85
+ children = (
86
+ 607FACD51AFB9204008FA782 /* AppDelegate.swift */,
87
+ 607FACD71AFB9204008FA782 /* ViewController.swift */,
88
+ DCDBF742291BADFD001CC26D /* YKEmptyOcFile.m */,
89
+ 607FACD91AFB9204008FA782 /* Main.storyboard */,
90
+ 607FACDC1AFB9204008FA782 /* Images.xcassets */,
91
+ 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
92
+ 607FACD31AFB9204008FA782 /* Supporting Files */,
93
+ DCDBF740291BADFD001CC26D /* Example-Bridging-Header.h */,
94
+ DCDBF741291BADFD001CC26D /* Tests-Bridging-Header.h */,
95
+ );
96
+ name = "Example for PROJECT";
97
+ path = PROJECT;
98
+ sourceTree = "<group>";
99
+ };
100
+ 607FACD31AFB9204008FA782 /* Supporting Files */ = {
101
+ isa = PBXGroup;
102
+ children = (
103
+ 607FACD41AFB9204008FA782 /* Info.plist */,
104
+ );
105
+ name = "Supporting Files";
106
+ sourceTree = "<group>";
107
+ };
108
+ 607FACE81AFB9204008FA782 /* Tests */ = {
109
+ isa = PBXGroup;
110
+ children = (
111
+ 607FACEB1AFB9204008FA782 /* Tests.swift */,
112
+ 607FACE91AFB9204008FA782 /* Supporting Files */,
113
+ );
114
+ path = Tests;
115
+ sourceTree = "<group>";
116
+ };
117
+ 607FACE91AFB9204008FA782 /* Supporting Files */ = {
118
+ isa = PBXGroup;
119
+ children = (
120
+ 607FACEA1AFB9204008FA782 /* Info.plist */,
121
+ );
122
+ name = "Supporting Files";
123
+ sourceTree = "<group>";
124
+ };
125
+ 607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
126
+ isa = PBXGroup;
127
+ children = (
128
+ );
129
+ name = "Podspec Metadata";
130
+ sourceTree = "<group>";
131
+ };
132
+ /* End PBXGroup section */
133
+
134
+ /* Begin PBXNativeTarget section */
135
+ 607FACCF1AFB9204008FA782 /* PROJECT_Example */ = {
136
+ isa = PBXNativeTarget;
137
+ buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "PROJECT_Example" */;
138
+ buildPhases = (
139
+ 607FACCC1AFB9204008FA782 /* Sources */,
140
+ 607FACCD1AFB9204008FA782 /* Frameworks */,
141
+ 607FACCE1AFB9204008FA782 /* Resources */,
142
+ );
143
+ buildRules = (
144
+ );
145
+ dependencies = (
146
+ );
147
+ name = PROJECT_Example;
148
+ productName = PROJECT;
149
+ productReference = 607FACD01AFB9204008FA782 /* PROJECT_Example.app */;
150
+ productType = "com.apple.product-type.application";
151
+ };
152
+ 607FACE41AFB9204008FA782 /* PROJECT_Tests */ = {
153
+ isa = PBXNativeTarget;
154
+ buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */;
155
+ buildPhases = (
156
+ 607FACE11AFB9204008FA782 /* Sources */,
157
+ 607FACE21AFB9204008FA782 /* Frameworks */,
158
+ 607FACE31AFB9204008FA782 /* Resources */,
159
+ );
160
+ buildRules = (
161
+ );
162
+ dependencies = (
163
+ 607FACE71AFB9204008FA782 /* PBXTargetDependency */,
164
+ );
165
+ name = PROJECT_Tests;
166
+ productName = Tests;
167
+ productReference = 607FACE51AFB9204008FA782 /* PROJECT_Tests.xctest */;
168
+ productType = "com.apple.product-type.bundle.unit-test";
169
+ };
170
+ /* End PBXNativeTarget section */
171
+
172
+ /* Begin PBXProject section */
173
+ 607FACC81AFB9204008FA782 /* Project object */ = {
174
+ isa = PBXProject;
175
+ attributes = {
176
+ LastSwiftUpdateCheck = 0830;
177
+ LastUpgradeCheck = 0830;
178
+ ORGANIZATIONNAME = CocoaPods;
179
+ TargetAttributes = {
180
+ 607FACCF1AFB9204008FA782 = {
181
+ CreatedOnToolsVersion = 6.3.1;
182
+ LastSwiftMigration = 1400;
183
+ };
184
+ 607FACE41AFB9204008FA782 = {
185
+ CreatedOnToolsVersion = 6.3.1;
186
+ LastSwiftMigration = 1400;
187
+ TestTargetID = 607FACCF1AFB9204008FA782;
188
+ };
189
+ };
190
+ };
191
+ buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "PROJECT" */;
192
+ compatibilityVersion = "Xcode 3.2";
193
+ developmentRegion = English;
194
+ hasScannedForEncodings = 0;
195
+ knownRegions = (
196
+ English,
197
+ en,
198
+ Base,
199
+ );
200
+ mainGroup = 607FACC71AFB9204008FA782;
201
+ productRefGroup = 607FACD11AFB9204008FA782 /* Products */;
202
+ projectDirPath = "";
203
+ projectRoot = "";
204
+ targets = (
205
+ 607FACCF1AFB9204008FA782 /* PROJECT_Example */,
206
+ 607FACE41AFB9204008FA782 /* PROJECT_Tests */,
207
+ );
208
+ };
209
+ /* End PBXProject section */
210
+
211
+ /* Begin PBXResourcesBuildPhase section */
212
+ 607FACCE1AFB9204008FA782 /* Resources */ = {
213
+ isa = PBXResourcesBuildPhase;
214
+ buildActionMask = 2147483647;
215
+ files = (
216
+ 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */,
217
+ 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,
218
+ 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,
219
+ );
220
+ runOnlyForDeploymentPostprocessing = 0;
221
+ };
222
+ 607FACE31AFB9204008FA782 /* Resources */ = {
223
+ isa = PBXResourcesBuildPhase;
224
+ buildActionMask = 2147483647;
225
+ files = (
226
+ );
227
+ runOnlyForDeploymentPostprocessing = 0;
228
+ };
229
+ /* End PBXResourcesBuildPhase section */
230
+
231
+ /* Begin PBXSourcesBuildPhase section */
232
+ 607FACCC1AFB9204008FA782 /* Sources */ = {
233
+ isa = PBXSourcesBuildPhase;
234
+ buildActionMask = 2147483647;
235
+ files = (
236
+ DCDBF743291BADFD001CC26D /* YKEmptyOcFile.m in Sources */,
237
+ 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,
238
+ 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
239
+ );
240
+ runOnlyForDeploymentPostprocessing = 0;
241
+ };
242
+ 607FACE11AFB9204008FA782 /* Sources */ = {
243
+ isa = PBXSourcesBuildPhase;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
247
+ DCDBF744291BADFD001CC26D /* YKEmptyOcFile.m in Sources */,
248
+ );
249
+ runOnlyForDeploymentPostprocessing = 0;
250
+ };
251
+ /* End PBXSourcesBuildPhase section */
252
+
253
+ /* Begin PBXTargetDependency section */
254
+ 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {
255
+ isa = PBXTargetDependency;
256
+ target = 607FACCF1AFB9204008FA782 /* PROJECT_Example */;
257
+ targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;
258
+ };
259
+ /* End PBXTargetDependency section */
260
+
261
+ /* Begin PBXVariantGroup section */
262
+ 607FACD91AFB9204008FA782 /* Main.storyboard */ = {
263
+ isa = PBXVariantGroup;
264
+ children = (
265
+ 607FACDA1AFB9204008FA782 /* Base */,
266
+ );
267
+ name = Main.storyboard;
268
+ sourceTree = "<group>";
269
+ };
270
+ 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {
271
+ isa = PBXVariantGroup;
272
+ children = (
273
+ 607FACDF1AFB9204008FA782 /* Base */,
274
+ );
275
+ name = LaunchScreen.xib;
276
+ sourceTree = "<group>";
277
+ };
278
+ /* End PBXVariantGroup section */
279
+
280
+ /* Begin XCBuildConfiguration section */
281
+ 607FACED1AFB9204008FA782 /* Debug */ = {
282
+ isa = XCBuildConfiguration;
283
+ buildSettings = {
284
+ ALWAYS_SEARCH_USER_PATHS = NO;
285
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
286
+ CLANG_CXX_LIBRARY = "libc++";
287
+ CLANG_ENABLE_MODULES = YES;
288
+ CLANG_ENABLE_OBJC_ARC = YES;
289
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
290
+ CLANG_WARN_BOOL_CONVERSION = YES;
291
+ CLANG_WARN_COMMA = YES;
292
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
293
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
294
+ CLANG_WARN_EMPTY_BODY = YES;
295
+ CLANG_WARN_ENUM_CONVERSION = YES;
296
+ CLANG_WARN_INFINITE_RECURSION = YES;
297
+ CLANG_WARN_INT_CONVERSION = YES;
298
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
299
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
300
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
301
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
302
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
303
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
304
+ CLANG_WARN_UNREACHABLE_CODE = YES;
305
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
306
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
307
+ COPY_PHASE_STRIP = NO;
308
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
309
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
310
+ ENABLE_TESTABILITY = YES;
311
+ GCC_C_LANGUAGE_STANDARD = gnu99;
312
+ GCC_DYNAMIC_NO_PIC = NO;
313
+ GCC_NO_COMMON_BLOCKS = YES;
314
+ GCC_OPTIMIZATION_LEVEL = 0;
315
+ GCC_PREPROCESSOR_DEFINITIONS = (
316
+ "DEBUG=1",
317
+ "$(inherited)",
318
+ );
319
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
320
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
321
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
322
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
323
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
324
+ GCC_WARN_UNUSED_FUNCTION = YES;
325
+ GCC_WARN_UNUSED_VARIABLE = YES;
326
+ IPHONEOS_DEPLOYMENT_TARGET = 9.3;
327
+ MTL_ENABLE_DEBUG_INFO = YES;
328
+ ONLY_ACTIVE_ARCH = YES;
329
+ SDKROOT = iphoneos;
330
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
331
+ };
332
+ name = Debug;
333
+ };
334
+ 607FACEE1AFB9204008FA782 /* Release */ = {
335
+ isa = XCBuildConfiguration;
336
+ buildSettings = {
337
+ ALWAYS_SEARCH_USER_PATHS = NO;
338
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
339
+ CLANG_CXX_LIBRARY = "libc++";
340
+ CLANG_ENABLE_MODULES = YES;
341
+ CLANG_ENABLE_OBJC_ARC = YES;
342
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
343
+ CLANG_WARN_BOOL_CONVERSION = YES;
344
+ CLANG_WARN_COMMA = YES;
345
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
346
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
347
+ CLANG_WARN_EMPTY_BODY = YES;
348
+ CLANG_WARN_ENUM_CONVERSION = YES;
349
+ CLANG_WARN_INFINITE_RECURSION = YES;
350
+ CLANG_WARN_INT_CONVERSION = YES;
351
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
352
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
353
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
354
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
355
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
356
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
357
+ CLANG_WARN_UNREACHABLE_CODE = YES;
358
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
359
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
360
+ COPY_PHASE_STRIP = NO;
361
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
362
+ ENABLE_NS_ASSERTIONS = NO;
363
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
364
+ GCC_C_LANGUAGE_STANDARD = gnu99;
365
+ GCC_NO_COMMON_BLOCKS = YES;
366
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
367
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
368
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
369
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
370
+ GCC_WARN_UNUSED_FUNCTION = YES;
371
+ GCC_WARN_UNUSED_VARIABLE = YES;
372
+ IPHONEOS_DEPLOYMENT_TARGET = 9.3;
373
+ MTL_ENABLE_DEBUG_INFO = NO;
374
+ SDKROOT = iphoneos;
375
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
376
+ VALIDATE_PRODUCT = YES;
377
+ };
378
+ name = Release;
379
+ };
380
+ 607FACF01AFB9204008FA782 /* Debug */ = {
381
+ isa = XCBuildConfiguration;
382
+ buildSettings = {
383
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
384
+ CLANG_ENABLE_MODULES = YES;
385
+ INFOPLIST_FILE = PROJECT/Info.plist;
386
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
387
+ MODULE_NAME = ExampleApp;
388
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
389
+ PRODUCT_NAME = "$(TARGET_NAME)";
390
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/Example-Bridging-Header.h";
391
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
392
+ SWIFT_SWIFT3_OBJC_INFERENCE = Default;
393
+ SWIFT_VERSION = 4.0;
394
+ };
395
+ name = Debug;
396
+ };
397
+ 607FACF11AFB9204008FA782 /* Release */ = {
398
+ isa = XCBuildConfiguration;
399
+ buildSettings = {
400
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
401
+ CLANG_ENABLE_MODULES = YES;
402
+ INFOPLIST_FILE = PROJECT/Info.plist;
403
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
404
+ MODULE_NAME = ExampleApp;
405
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
406
+ PRODUCT_NAME = "$(TARGET_NAME)";
407
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/Example-Bridging-Header.h";
408
+ SWIFT_SWIFT3_OBJC_INFERENCE = Default;
409
+ SWIFT_VERSION = 4.0;
410
+ };
411
+ name = Release;
412
+ };
413
+ 607FACF31AFB9204008FA782 /* Debug */ = {
414
+ isa = XCBuildConfiguration;
415
+ buildSettings = {
416
+ CLANG_ENABLE_MODULES = YES;
417
+ FRAMEWORK_SEARCH_PATHS = (
418
+ "$(PLATFORM_DIR)/Developer/Library/Frameworks",
419
+ "$(inherited)",
420
+ );
421
+ GCC_PREPROCESSOR_DEFINITIONS = (
422
+ "DEBUG=1",
423
+ "$(inherited)",
424
+ );
425
+ INFOPLIST_FILE = Tests/Info.plist;
426
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
427
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
428
+ PRODUCT_NAME = "$(TARGET_NAME)";
429
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/Tests-Bridging-Header.h";
430
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
431
+ SWIFT_SWIFT3_OBJC_INFERENCE = Default;
432
+ SWIFT_VERSION = 4.0;
433
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
434
+ };
435
+ name = Debug;
436
+ };
437
+ 607FACF41AFB9204008FA782 /* Release */ = {
438
+ isa = XCBuildConfiguration;
439
+ buildSettings = {
440
+ CLANG_ENABLE_MODULES = YES;
441
+ FRAMEWORK_SEARCH_PATHS = (
442
+ "$(PLATFORM_DIR)/Developer/Library/Frameworks",
443
+ "$(inherited)",
444
+ );
445
+ INFOPLIST_FILE = Tests/Info.plist;
446
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
447
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
448
+ PRODUCT_NAME = "$(TARGET_NAME)";
449
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/Tests-Bridging-Header.h";
450
+ SWIFT_SWIFT3_OBJC_INFERENCE = Default;
451
+ SWIFT_VERSION = 4.0;
452
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
453
+ };
454
+ name = Release;
455
+ };
456
+ /* End XCBuildConfiguration section */
457
+
458
+ /* Begin XCConfigurationList section */
459
+ 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "PROJECT" */ = {
460
+ isa = XCConfigurationList;
461
+ buildConfigurations = (
462
+ 607FACED1AFB9204008FA782 /* Debug */,
463
+ 607FACEE1AFB9204008FA782 /* Release */,
464
+ );
465
+ defaultConfigurationIsVisible = 0;
466
+ defaultConfigurationName = Release;
467
+ };
468
+ 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "PROJECT_Example" */ = {
469
+ isa = XCConfigurationList;
470
+ buildConfigurations = (
471
+ 607FACF01AFB9204008FA782 /* Debug */,
472
+ 607FACF11AFB9204008FA782 /* Release */,
473
+ );
474
+ defaultConfigurationIsVisible = 0;
475
+ defaultConfigurationName = Release;
476
+ };
477
+ 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */ = {
478
+ isa = XCConfigurationList;
479
+ buildConfigurations = (
480
+ 607FACF31AFB9204008FA782 /* Debug */,
481
+ 607FACF41AFB9204008FA782 /* Release */,
482
+ );
483
+ defaultConfigurationIsVisible = 0;
484
+ defaultConfigurationName = Release;
485
+ };
486
+ /* End XCConfigurationList section */
487
+ };
488
+ rootObject = 607FACC81AFB9204008FA782 /* Project object */;
489
+ }
@@ -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,117 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0900"
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 = "607FACCF1AFB9204008FA782"
18
+ BuildableName = "PROJECT_Example.app"
19
+ BlueprintName = "PROJECT_Example"
20
+ ReferencedContainer = "container:PROJECT.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ <BuildActionEntry
24
+ buildForTesting = "YES"
25
+ buildForRunning = "YES"
26
+ buildForProfiling = "NO"
27
+ buildForArchiving = "NO"
28
+ buildForAnalyzing = "YES">
29
+ <BuildableReference
30
+ BuildableIdentifier = "primary"
31
+ BlueprintIdentifier = "607FACE41AFB9204008FA782"
32
+ BuildableName = "PROJECT_Tests.xctest"
33
+ BlueprintName = "PROJECT_Tests"
34
+ ReferencedContainer = "container:PROJECT.xcodeproj">
35
+ </BuildableReference>
36
+ </BuildActionEntry>
37
+ </BuildActionEntries>
38
+ </BuildAction>
39
+ <TestAction
40
+ buildConfiguration = "Debug"
41
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
42
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43
+ language = ""
44
+ shouldUseLaunchSchemeArgsEnv = "YES">
45
+ <Testables>
46
+ <TestableReference
47
+ skipped = "NO">
48
+ <BuildableReference
49
+ BuildableIdentifier = "primary"
50
+ BlueprintIdentifier = "607FACE41AFB9204008FA782"
51
+ BuildableName = "PROJECT_Tests.xctest"
52
+ BlueprintName = "PROJECT_Tests"
53
+ ReferencedContainer = "container:PROJECT.xcodeproj">
54
+ </BuildableReference>
55
+ </TestableReference>
56
+ </Testables>
57
+ <MacroExpansion>
58
+ <BuildableReference
59
+ BuildableIdentifier = "primary"
60
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
61
+ BuildableName = "PROJECT_Example.app"
62
+ BlueprintName = "PROJECT_Example"
63
+ ReferencedContainer = "container:PROJECT.xcodeproj">
64
+ </BuildableReference>
65
+ </MacroExpansion>
66
+ <AdditionalOptions>
67
+ </AdditionalOptions>
68
+ </TestAction>
69
+ <LaunchAction
70
+ buildConfiguration = "Debug"
71
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
72
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
73
+ language = ""
74
+ launchStyle = "0"
75
+ useCustomWorkingDirectory = "NO"
76
+ ignoresPersistentStateOnLaunch = "NO"
77
+ debugDocumentVersioning = "YES"
78
+ debugServiceExtension = "internal"
79
+ allowLocationSimulation = "YES">
80
+ <BuildableProductRunnable
81
+ runnableDebuggingMode = "0">
82
+ <BuildableReference
83
+ BuildableIdentifier = "primary"
84
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
85
+ BuildableName = "PROJECT_Example.app"
86
+ BlueprintName = "PROJECT_Example"
87
+ ReferencedContainer = "container:PROJECT.xcodeproj">
88
+ </BuildableReference>
89
+ </BuildableProductRunnable>
90
+ <AdditionalOptions>
91
+ </AdditionalOptions>
92
+ </LaunchAction>
93
+ <ProfileAction
94
+ buildConfiguration = "Release"
95
+ shouldUseLaunchSchemeArgsEnv = "YES"
96
+ savedToolIdentifier = ""
97
+ useCustomWorkingDirectory = "NO"
98
+ debugDocumentVersioning = "YES">
99
+ <BuildableProductRunnable
100
+ runnableDebuggingMode = "0">
101
+ <BuildableReference
102
+ BuildableIdentifier = "primary"
103
+ BlueprintIdentifier = "607FACCF1AFB9204008FA782"
104
+ BuildableName = "PROJECT_Example.app"
105
+ BlueprintName = "PROJECT_Example"
106
+ ReferencedContainer = "container:PROJECT.xcodeproj">
107
+ </BuildableReference>
108
+ </BuildableProductRunnable>
109
+ </ProfileAction>
110
+ <AnalyzeAction
111
+ buildConfiguration = "Debug">
112
+ </AnalyzeAction>
113
+ <ArchiveAction
114
+ buildConfiguration = "Release"
115
+ revealArchiveInOrganizer = "YES">
116
+ </ArchiveAction>
117
+ </Scheme>
@@ -0,0 +1,35 @@
1
+
2
+
3
+ platform :ios, '10.0'
4
+
5
+ inhibit_all_warnings!
6
+ use_modular_headers!
7
+ use_frameworks! :linkage => :static
8
+
9
+
10
+ #pod_install hook
11
+ post_install do |installer|
12
+
13
+ # 单个target编辑配置
14
+ installer.pods_project.targets.each do |target|
15
+ target.build_configurations.each do |config|
16
+ #config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
17
+
18
+ config.build_settings['PRODUCT_BUNDLE_IDENTIFIER'] = "org.cocoapods.${PRODUCT_NAME}"
19
+ config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
20
+ config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
21
+ config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
22
+ end
23
+ end
24
+
25
+ end
26
+
27
+ target '${POD_NAME}_Example' do
28
+ pod '${POD_NAME}', :path => '../'
29
+
30
+ target '${POD_NAME}_Tests' do
31
+ inherit! :search_paths
32
+
33
+ ${INCLUDED_PODS}
34
+ end
35
+ end
@@ -0,0 +1,24 @@
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>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>BNDL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ </dict>
24
+ </plist>