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,30 @@
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>$(DEVELOPMENT_LANGUAGE)</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIconFile</key>
10
+ <string></string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>$(PRODUCT_NAME)</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>APPL</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>1.0</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ <key>LSMinimumSystemVersion</key>
24
+ <string>$(MACOSX_DEPLOYMENT_TARGET)</string>
25
+ <key>NSMainStoryboardFile</key>
26
+ <string>Main</string>
27
+ <key>NSPrincipalClass</key>
28
+ <string>NSApplication</string>
29
+ </dict>
30
+ </plist>
@@ -0,0 +1,10 @@
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>com.apple.security.app-sandbox</key>
6
+ <true/>
7
+ <key>com.apple.security.files.user-selected.read-only</key>
8
+ <true/>
9
+ </dict>
10
+ </plist>
@@ -0,0 +1,27 @@
1
+ //
2
+ // ViewController.swift
3
+ // PROJECT
4
+ //
5
+ // Created by PROJECT_OWNER on TODAYS_DATE.
6
+ // Copyright (c) TODAYS_YEAR PROJECT_OWNER. All rights reserved.
7
+ //
8
+
9
+ import Cocoa
10
+
11
+ class ViewController: NSViewController {
12
+
13
+ override func viewDidLoad() {
14
+ super.viewDidLoad()
15
+
16
+ // Do any additional setup after loading the view.
17
+ }
18
+
19
+ override var representedObject: Any? {
20
+ didSet {
21
+ // Update the view, if already loaded.
22
+ }
23
+ }
24
+
25
+
26
+ }
27
+
@@ -0,0 +1,444 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 48;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ ED83F67C20348A760038D96B /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED83F67B20348A760038D96B /* AppDelegate.swift */; };
11
+ ED83F67E20348A760038D96B /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED83F67D20348A760038D96B /* ViewController.swift */; };
12
+ ED83F68020348A760038D96B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = ED83F67F20348A760038D96B /* Assets.xcassets */; };
13
+ ED83F68320348A760038D96B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ED83F68120348A760038D96B /* Main.storyboard */; };
14
+ ED83F68F20348A760038D96B /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED83F68E20348A760038D96B /* Tests.swift */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXContainerItemProxy section */
18
+ ED83F68B20348A760038D96B /* PBXContainerItemProxy */ = {
19
+ isa = PBXContainerItemProxy;
20
+ containerPortal = ED83F67020348A760038D96B /* Project object */;
21
+ proxyType = 1;
22
+ remoteGlobalIDString = ED83F67720348A760038D96B;
23
+ remoteInfo = PROJECT;
24
+ };
25
+ /* End PBXContainerItemProxy section */
26
+
27
+ /* Begin PBXFileReference section */
28
+ ED83F67820348A760038D96B /* PROJECT_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PROJECT_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
29
+ ED83F67B20348A760038D96B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
30
+ ED83F67D20348A760038D96B /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
31
+ ED83F67F20348A760038D96B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
32
+ ED83F68220348A760038D96B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
33
+ ED83F68420348A760038D96B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
34
+ ED83F68520348A760038D96B /* PROJECT.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = PROJECT.entitlements; sourceTree = "<group>"; };
35
+ ED83F68A20348A760038D96B /* PROJECT_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PROJECT_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
36
+ ED83F68E20348A760038D96B /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
37
+ ED83F69020348A760038D96B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
38
+ /* End PBXFileReference section */
39
+
40
+ /* Begin PBXFrameworksBuildPhase section */
41
+ ED83F67520348A760038D96B /* Frameworks */ = {
42
+ isa = PBXFrameworksBuildPhase;
43
+ buildActionMask = 2147483647;
44
+ files = (
45
+ );
46
+ runOnlyForDeploymentPostprocessing = 0;
47
+ };
48
+ ED83F68720348A760038D96B /* Frameworks */ = {
49
+ isa = PBXFrameworksBuildPhase;
50
+ buildActionMask = 2147483647;
51
+ files = (
52
+ );
53
+ runOnlyForDeploymentPostprocessing = 0;
54
+ };
55
+ /* End PBXFrameworksBuildPhase section */
56
+
57
+ /* Begin PBXGroup section */
58
+ ED83F66F20348A760038D96B = {
59
+ isa = PBXGroup;
60
+ children = (
61
+ ED83F69A20348B650038D96B /* Podspec Metadata */,
62
+ ED83F67A20348A760038D96B /* PROJECT */,
63
+ ED83F68D20348A760038D96B /* Tests */,
64
+ ED83F67920348A760038D96B /* Products */,
65
+ );
66
+ sourceTree = "<group>";
67
+ };
68
+ ED83F67920348A760038D96B /* Products */ = {
69
+ isa = PBXGroup;
70
+ children = (
71
+ ED83F67820348A760038D96B /* PROJECT_Example.app */,
72
+ ED83F68A20348A760038D96B /* PROJECT_Tests.xctest */,
73
+ );
74
+ name = Products;
75
+ sourceTree = "<group>";
76
+ };
77
+ ED83F67A20348A760038D96B /* PROJECT */ = {
78
+ isa = PBXGroup;
79
+ children = (
80
+ ED83F67B20348A760038D96B /* AppDelegate.swift */,
81
+ ED83F67D20348A760038D96B /* ViewController.swift */,
82
+ ED83F67F20348A760038D96B /* Assets.xcassets */,
83
+ ED83F68120348A760038D96B /* Main.storyboard */,
84
+ ED83F68420348A760038D96B /* Info.plist */,
85
+ ED83F68520348A760038D96B /* PROJECT.entitlements */,
86
+ );
87
+ path = PROJECT;
88
+ sourceTree = "<group>";
89
+ };
90
+ ED83F68D20348A760038D96B /* Tests */ = {
91
+ isa = PBXGroup;
92
+ children = (
93
+ ED83F68E20348A760038D96B /* Tests.swift */,
94
+ ED83F69020348A760038D96B /* Info.plist */,
95
+ );
96
+ path = Tests;
97
+ sourceTree = "<group>";
98
+ };
99
+ ED83F69A20348B650038D96B /* Podspec Metadata */ = {
100
+ isa = PBXGroup;
101
+ children = (
102
+ );
103
+ name = "Podspec Metadata";
104
+ sourceTree = "<group>";
105
+ };
106
+ /* End PBXGroup section */
107
+
108
+ /* Begin PBXNativeTarget section */
109
+ ED83F67720348A760038D96B /* PROJECT_Example */ = {
110
+ isa = PBXNativeTarget;
111
+ buildConfigurationList = ED83F69320348A760038D96B /* Build configuration list for PBXNativeTarget "PROJECT_Example" */;
112
+ buildPhases = (
113
+ ED83F67420348A760038D96B /* Sources */,
114
+ ED83F67520348A760038D96B /* Frameworks */,
115
+ ED83F67620348A760038D96B /* Resources */,
116
+ );
117
+ buildRules = (
118
+ );
119
+ dependencies = (
120
+ );
121
+ name = PROJECT_Example;
122
+ productName = PROJECT;
123
+ productReference = ED83F67820348A760038D96B /* PROJECT_Example.app */;
124
+ productType = "com.apple.product-type.application";
125
+ };
126
+ ED83F68920348A760038D96B /* PROJECT_Tests */ = {
127
+ isa = PBXNativeTarget;
128
+ buildConfigurationList = ED83F69620348A760038D96B /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */;
129
+ buildPhases = (
130
+ ED83F68620348A760038D96B /* Sources */,
131
+ ED83F68720348A760038D96B /* Frameworks */,
132
+ ED83F68820348A760038D96B /* Resources */,
133
+ );
134
+ buildRules = (
135
+ );
136
+ dependencies = (
137
+ ED83F68C20348A760038D96B /* PBXTargetDependency */,
138
+ );
139
+ name = PROJECT_Tests;
140
+ productName = PROJECTTests;
141
+ productReference = ED83F68A20348A760038D96B /* PROJECT_Tests.xctest */;
142
+ productType = "com.apple.product-type.bundle.unit-test";
143
+ };
144
+ /* End PBXNativeTarget section */
145
+
146
+ /* Begin PBXProject section */
147
+ ED83F67020348A760038D96B /* Project object */ = {
148
+ isa = PBXProject;
149
+ attributes = {
150
+ LastSwiftUpdateCheck = 0900;
151
+ LastUpgradeCheck = 0900;
152
+ ORGANIZATIONNAME = CocoaPods;
153
+ TargetAttributes = {
154
+ ED83F67720348A760038D96B = {
155
+ CreatedOnToolsVersion = 9.0;
156
+ ProvisioningStyle = Automatic;
157
+ };
158
+ ED83F68920348A760038D96B = {
159
+ CreatedOnToolsVersion = 9.0;
160
+ ProvisioningStyle = Automatic;
161
+ TestTargetID = ED83F67720348A760038D96B;
162
+ };
163
+ };
164
+ };
165
+ buildConfigurationList = ED83F67320348A760038D96B /* Build configuration list for PBXProject "PROJECT" */;
166
+ compatibilityVersion = "Xcode 8.0";
167
+ developmentRegion = en;
168
+ hasScannedForEncodings = 0;
169
+ knownRegions = (
170
+ en,
171
+ Base,
172
+ );
173
+ mainGroup = ED83F66F20348A760038D96B;
174
+ productRefGroup = ED83F67920348A760038D96B /* Products */;
175
+ projectDirPath = "";
176
+ projectRoot = "";
177
+ targets = (
178
+ ED83F67720348A760038D96B /* PROJECT_Example */,
179
+ ED83F68920348A760038D96B /* PROJECT_Tests */,
180
+ );
181
+ };
182
+ /* End PBXProject section */
183
+
184
+ /* Begin PBXResourcesBuildPhase section */
185
+ ED83F67620348A760038D96B /* Resources */ = {
186
+ isa = PBXResourcesBuildPhase;
187
+ buildActionMask = 2147483647;
188
+ files = (
189
+ ED83F68020348A760038D96B /* Assets.xcassets in Resources */,
190
+ ED83F68320348A760038D96B /* Main.storyboard in Resources */,
191
+ );
192
+ runOnlyForDeploymentPostprocessing = 0;
193
+ };
194
+ ED83F68820348A760038D96B /* Resources */ = {
195
+ isa = PBXResourcesBuildPhase;
196
+ buildActionMask = 2147483647;
197
+ files = (
198
+ );
199
+ runOnlyForDeploymentPostprocessing = 0;
200
+ };
201
+ /* End PBXResourcesBuildPhase section */
202
+
203
+ /* Begin PBXSourcesBuildPhase section */
204
+ ED83F67420348A760038D96B /* Sources */ = {
205
+ isa = PBXSourcesBuildPhase;
206
+ buildActionMask = 2147483647;
207
+ files = (
208
+ ED83F67E20348A760038D96B /* ViewController.swift in Sources */,
209
+ ED83F67C20348A760038D96B /* AppDelegate.swift in Sources */,
210
+ );
211
+ runOnlyForDeploymentPostprocessing = 0;
212
+ };
213
+ ED83F68620348A760038D96B /* Sources */ = {
214
+ isa = PBXSourcesBuildPhase;
215
+ buildActionMask = 2147483647;
216
+ files = (
217
+ ED83F68F20348A760038D96B /* Tests.swift in Sources */,
218
+ );
219
+ runOnlyForDeploymentPostprocessing = 0;
220
+ };
221
+ /* End PBXSourcesBuildPhase section */
222
+
223
+ /* Begin PBXTargetDependency section */
224
+ ED83F68C20348A760038D96B /* PBXTargetDependency */ = {
225
+ isa = PBXTargetDependency;
226
+ target = ED83F67720348A760038D96B /* PROJECT_Example */;
227
+ targetProxy = ED83F68B20348A760038D96B /* PBXContainerItemProxy */;
228
+ };
229
+ /* End PBXTargetDependency section */
230
+
231
+ /* Begin PBXVariantGroup section */
232
+ ED83F68120348A760038D96B /* Main.storyboard */ = {
233
+ isa = PBXVariantGroup;
234
+ children = (
235
+ ED83F68220348A760038D96B /* Base */,
236
+ );
237
+ name = Main.storyboard;
238
+ sourceTree = "<group>";
239
+ };
240
+ /* End PBXVariantGroup section */
241
+
242
+ /* Begin XCBuildConfiguration section */
243
+ ED83F69120348A760038D96B /* Debug */ = {
244
+ isa = XCBuildConfiguration;
245
+ buildSettings = {
246
+ ALWAYS_SEARCH_USER_PATHS = NO;
247
+ CLANG_ANALYZER_NONNULL = YES;
248
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
249
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
250
+ CLANG_CXX_LIBRARY = "libc++";
251
+ CLANG_ENABLE_MODULES = YES;
252
+ CLANG_ENABLE_OBJC_ARC = YES;
253
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
254
+ CLANG_WARN_BOOL_CONVERSION = YES;
255
+ CLANG_WARN_COMMA = YES;
256
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
257
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
258
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
259
+ CLANG_WARN_EMPTY_BODY = YES;
260
+ CLANG_WARN_ENUM_CONVERSION = YES;
261
+ CLANG_WARN_INFINITE_RECURSION = YES;
262
+ CLANG_WARN_INT_CONVERSION = YES;
263
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
264
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
265
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
266
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
267
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
268
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
269
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
270
+ CLANG_WARN_UNREACHABLE_CODE = YES;
271
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
272
+ CODE_SIGN_IDENTITY = "-";
273
+ COPY_PHASE_STRIP = NO;
274
+ DEBUG_INFORMATION_FORMAT = dwarf;
275
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
276
+ ENABLE_TESTABILITY = YES;
277
+ GCC_C_LANGUAGE_STANDARD = gnu11;
278
+ GCC_DYNAMIC_NO_PIC = NO;
279
+ GCC_NO_COMMON_BLOCKS = YES;
280
+ GCC_OPTIMIZATION_LEVEL = 0;
281
+ GCC_PREPROCESSOR_DEFINITIONS = (
282
+ "DEBUG=1",
283
+ "$(inherited)",
284
+ );
285
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
286
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
287
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
288
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
289
+ GCC_WARN_UNUSED_FUNCTION = YES;
290
+ GCC_WARN_UNUSED_VARIABLE = YES;
291
+ MACOSX_DEPLOYMENT_TARGET = 10.13;
292
+ MTL_ENABLE_DEBUG_INFO = YES;
293
+ ONLY_ACTIVE_ARCH = YES;
294
+ SDKROOT = macosx;
295
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
296
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
297
+ };
298
+ name = Debug;
299
+ };
300
+ ED83F69220348A760038D96B /* Release */ = {
301
+ isa = XCBuildConfiguration;
302
+ buildSettings = {
303
+ ALWAYS_SEARCH_USER_PATHS = NO;
304
+ CLANG_ANALYZER_NONNULL = YES;
305
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
306
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
307
+ CLANG_CXX_LIBRARY = "libc++";
308
+ CLANG_ENABLE_MODULES = YES;
309
+ CLANG_ENABLE_OBJC_ARC = YES;
310
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
311
+ CLANG_WARN_BOOL_CONVERSION = YES;
312
+ CLANG_WARN_COMMA = YES;
313
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
314
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
315
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
316
+ CLANG_WARN_EMPTY_BODY = YES;
317
+ CLANG_WARN_ENUM_CONVERSION = YES;
318
+ CLANG_WARN_INFINITE_RECURSION = YES;
319
+ CLANG_WARN_INT_CONVERSION = YES;
320
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
321
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
322
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
323
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
324
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
325
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
326
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
327
+ CLANG_WARN_UNREACHABLE_CODE = YES;
328
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
329
+ CODE_SIGN_IDENTITY = "-";
330
+ COPY_PHASE_STRIP = NO;
331
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
332
+ ENABLE_NS_ASSERTIONS = NO;
333
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
334
+ GCC_C_LANGUAGE_STANDARD = gnu11;
335
+ GCC_NO_COMMON_BLOCKS = YES;
336
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
337
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
338
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
339
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
340
+ GCC_WARN_UNUSED_FUNCTION = YES;
341
+ GCC_WARN_UNUSED_VARIABLE = YES;
342
+ MACOSX_DEPLOYMENT_TARGET = 10.13;
343
+ MTL_ENABLE_DEBUG_INFO = NO;
344
+ SDKROOT = macosx;
345
+ SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
346
+ };
347
+ name = Release;
348
+ };
349
+ ED83F69420348A760038D96B /* Debug */ = {
350
+ isa = XCBuildConfiguration;
351
+ buildSettings = {
352
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
353
+ CODE_SIGN_ENTITLEMENTS = PROJECT/PROJECT.entitlements;
354
+ CODE_SIGN_STYLE = Automatic;
355
+ COMBINE_HIDPI_IMAGES = YES;
356
+ INFOPLIST_FILE = PROJECT/Info.plist;
357
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
358
+ PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.demo.PROJECT;
359
+ PRODUCT_NAME = "$(TARGET_NAME)";
360
+ SWIFT_VERSION = 4.0;
361
+ };
362
+ name = Debug;
363
+ };
364
+ ED83F69520348A760038D96B /* Release */ = {
365
+ isa = XCBuildConfiguration;
366
+ buildSettings = {
367
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
368
+ CODE_SIGN_ENTITLEMENTS = PROJECT/PROJECT.entitlements;
369
+ CODE_SIGN_STYLE = Automatic;
370
+ COMBINE_HIDPI_IMAGES = YES;
371
+ INFOPLIST_FILE = PROJECT/Info.plist;
372
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
373
+ PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.demo.PROJECT;
374
+ PRODUCT_NAME = "$(TARGET_NAME)";
375
+ SWIFT_VERSION = 4.0;
376
+ };
377
+ name = Release;
378
+ };
379
+ ED83F69720348A760038D96B /* Debug */ = {
380
+ isa = XCBuildConfiguration;
381
+ buildSettings = {
382
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
383
+ BUNDLE_LOADER = "$(TEST_HOST)";
384
+ CODE_SIGN_STYLE = Automatic;
385
+ COMBINE_HIDPI_IMAGES = YES;
386
+ INFOPLIST_FILE = Tests/Info.plist;
387
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
388
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.PROJECT-Tests";
389
+ PRODUCT_NAME = "$(TARGET_NAME)";
390
+ SWIFT_VERSION = 4.0;
391
+ TEST_HOST = "";
392
+ };
393
+ name = Debug;
394
+ };
395
+ ED83F69820348A760038D96B /* Release */ = {
396
+ isa = XCBuildConfiguration;
397
+ buildSettings = {
398
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
399
+ BUNDLE_LOADER = "$(TEST_HOST)";
400
+ CODE_SIGN_STYLE = Automatic;
401
+ COMBINE_HIDPI_IMAGES = YES;
402
+ INFOPLIST_FILE = Tests/Info.plist;
403
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
404
+ PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.PROJECT-Tests";
405
+ PRODUCT_NAME = "$(TARGET_NAME)";
406
+ SWIFT_VERSION = 4.0;
407
+ TEST_HOST = "";
408
+ };
409
+ name = Release;
410
+ };
411
+ /* End XCBuildConfiguration section */
412
+
413
+ /* Begin XCConfigurationList section */
414
+ ED83F67320348A760038D96B /* Build configuration list for PBXProject "PROJECT" */ = {
415
+ isa = XCConfigurationList;
416
+ buildConfigurations = (
417
+ ED83F69120348A760038D96B /* Debug */,
418
+ ED83F69220348A760038D96B /* Release */,
419
+ );
420
+ defaultConfigurationIsVisible = 0;
421
+ defaultConfigurationName = Release;
422
+ };
423
+ ED83F69320348A760038D96B /* Build configuration list for PBXNativeTarget "PROJECT_Example" */ = {
424
+ isa = XCConfigurationList;
425
+ buildConfigurations = (
426
+ ED83F69420348A760038D96B /* Debug */,
427
+ ED83F69520348A760038D96B /* Release */,
428
+ );
429
+ defaultConfigurationIsVisible = 0;
430
+ defaultConfigurationName = Release;
431
+ };
432
+ ED83F69620348A760038D96B /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */ = {
433
+ isa = XCConfigurationList;
434
+ buildConfigurations = (
435
+ ED83F69720348A760038D96B /* Debug */,
436
+ ED83F69820348A760038D96B /* Release */,
437
+ );
438
+ defaultConfigurationIsVisible = 0;
439
+ defaultConfigurationName = Release;
440
+ };
441
+ /* End XCConfigurationList section */
442
+ };
443
+ rootObject = ED83F67020348A760038D96B /* Project object */;
444
+ }
@@ -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,103 @@
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 = "ED83F67720348A760038D96B"
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
+ language = ""
30
+ shouldUseLaunchSchemeArgsEnv = "YES">
31
+ <Testables>
32
+ <TestableReference
33
+ skipped = "NO">
34
+ <BuildableReference
35
+ BuildableIdentifier = "primary"
36
+ BlueprintIdentifier = "ED83F68920348A760038D96B"
37
+ BuildableName = "PROJECT_Tests.xctest"
38
+ BlueprintName = "PROJECT_Tests"
39
+ ReferencedContainer = "container:PROJECT.xcodeproj">
40
+ </BuildableReference>
41
+ </TestableReference>
42
+ </Testables>
43
+ <MacroExpansion>
44
+ <BuildableReference
45
+ BuildableIdentifier = "primary"
46
+ BlueprintIdentifier = "ED83F67720348A760038D96B"
47
+ BuildableName = "PROJECT_Example.app"
48
+ BlueprintName = "PROJECT_Example"
49
+ ReferencedContainer = "container:PROJECT.xcodeproj">
50
+ </BuildableReference>
51
+ </MacroExpansion>
52
+ <AdditionalOptions>
53
+ </AdditionalOptions>
54
+ </TestAction>
55
+ <LaunchAction
56
+ buildConfiguration = "Debug"
57
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
58
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59
+ language = ""
60
+ launchStyle = "0"
61
+ useCustomWorkingDirectory = "NO"
62
+ ignoresPersistentStateOnLaunch = "NO"
63
+ debugDocumentVersioning = "YES"
64
+ debugServiceExtension = "internal"
65
+ allowLocationSimulation = "YES">
66
+ <BuildableProductRunnable
67
+ runnableDebuggingMode = "0">
68
+ <BuildableReference
69
+ BuildableIdentifier = "primary"
70
+ BlueprintIdentifier = "ED83F67720348A760038D96B"
71
+ BuildableName = "PROJECT_Example.app"
72
+ BlueprintName = "PROJECT_Example"
73
+ ReferencedContainer = "container:PROJECT.xcodeproj">
74
+ </BuildableReference>
75
+ </BuildableProductRunnable>
76
+ <AdditionalOptions>
77
+ </AdditionalOptions>
78
+ </LaunchAction>
79
+ <ProfileAction
80
+ buildConfiguration = "Release"
81
+ shouldUseLaunchSchemeArgsEnv = "YES"
82
+ savedToolIdentifier = ""
83
+ useCustomWorkingDirectory = "NO"
84
+ debugDocumentVersioning = "YES">
85
+ <BuildableProductRunnable
86
+ runnableDebuggingMode = "0">
87
+ <BuildableReference
88
+ BuildableIdentifier = "primary"
89
+ BlueprintIdentifier = "ED83F67720348A760038D96B"
90
+ BuildableName = "PROJECT_Example.app"
91
+ BlueprintName = "PROJECT_Example"
92
+ ReferencedContainer = "container:PROJECT.xcodeproj">
93
+ </BuildableReference>
94
+ </BuildableProductRunnable>
95
+ </ProfileAction>
96
+ <AnalyzeAction
97
+ buildConfiguration = "Debug">
98
+ </AnalyzeAction>
99
+ <ArchiveAction
100
+ buildConfiguration = "Release"
101
+ revealArchiveInOrganizer = "YES">
102
+ </ArchiveAction>
103
+ </Scheme>
@@ -0,0 +1,11 @@
1
+ use_frameworks!
2
+
3
+ target '${POD_NAME}_Example' do
4
+ pod '${POD_NAME}', :path => '../'
5
+
6
+ target '${POD_NAME}_Tests' do
7
+ inherit! :search_paths
8
+
9
+ ${INCLUDED_PODS}
10
+ end
11
+ 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>$(DEVELOPMENT_LANGUAGE)</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>CFBundleVersion</key>
20
+ <string>1</string>
21
+ </dict>
22
+ </plist>