yk_command 0.6.2 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/.idea/inspectionProfiles/Project_Default.xml +6 -0
  4. data/.idea/sonarlint/issuestore/index.pb +47 -31
  5. data/.idea/vcs.xml +2 -0
  6. data/.idea/yk_command.iml +58 -65
  7. data/.ruby-version +1 -1
  8. data/Gemfile +6 -3
  9. data/Gemfile.lock +11 -26
  10. data/debugProject/.DS_Store +0 -0
  11. data/lib/.DS_Store +0 -0
  12. data/lib/yk_command/.DS_Store +0 -0
  13. data/lib/yk_command/commands.rb +37 -20
  14. data/lib/yk_command/config/yk_config.rb +6 -7
  15. data/lib/yk_command/module/.DS_Store +0 -0
  16. data/lib/yk_command/module/module_handler.rb +48 -9
  17. data/lib/yk_command/module/template/.DS_Store +0 -0
  18. data/lib/yk_command/module/template/objc/.DS_Store +0 -0
  19. data/lib/yk_command/module/template/objc/Helper.h +16 -0
  20. data/lib/yk_command/module/template/objc/Helper.m +41 -0
  21. data/lib/yk_command/module/template/objc/demo/AppDelegate.swift +16 -0
  22. data/lib/yk_command/module/template/objc/demo/DemoVC_sw.swift +30 -0
  23. data/lib/yk_command/module/template/swift/.DS_Store +0 -0
  24. data/lib/yk_command/module/template/swift/ModuleRegisterMix.h +17 -0
  25. data/lib/yk_command/module/template/swift/ModuleRegisterMix.m +61 -0
  26. data/lib/yk_command/module/template/swift/ModuleRegisterSwift.swift +41 -0
  27. data/lib/yk_command/module/template/swift/RouterDefineSwift.swift +15 -0
  28. data/lib/yk_command/module/template/swift/RouterRegisterSwift.swift +23 -0
  29. data/lib/yk_command/module/template/swift/ServiceRegisterSwift.swift +20 -0
  30. data/lib/yk_command/module/template/swift/Tool.swift +53 -0
  31. data/lib/yk_command/module/template/tools/.DS_Store +0 -0
  32. data/lib/yk_command/module/template/tools/PrefixHeader.pch +15 -0
  33. data/lib/yk_command/module/template/tools/PrefixHeader_swift.swift +10 -0
  34. data/lib/yk_command/module/yk_module.rb +2 -2
  35. data/lib/yk_command/project/.DS_Store +0 -0
  36. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/.gitignore +0 -0
  37. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/.travis.yml +0 -0
  38. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/CODE_OF_CONDUCT.md +0 -0
  39. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/LICENSE +0 -0
  40. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/NAME-osx.podspec +0 -0
  41. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/NAME.podspec +5 -5
  42. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/POD_LICENSE +0 -0
  43. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/POD_README.md +0 -0
  44. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/Pod/Assets/.gitkeep +0 -0
  45. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/Pod/Classes/.gitkeep +0 -0
  46. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/README.md +0 -0
  47. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/configure +0 -0
  48. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +0 -0
  49. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +0 -0
  50. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/CPDAppDelegate.h +0 -0
  51. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/CPDAppDelegate.m +0 -0
  52. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/CPDViewController.h +0 -0
  53. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/CPDViewController.m +3 -1
  54. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  55. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/PROJECT-Info.plist +0 -0
  56. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +0 -0
  57. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +0 -0
  58. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT/main.m +0 -0
  59. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +0 -0
  60. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  61. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  62. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +0 -0
  63. data/lib/yk_command/project/full_component_demo_template/templates/ios/Example/Podfile +34 -0
  64. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/Tests/Tests-Info.plist +0 -0
  65. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/Tests/Tests-Prefix.pch +0 -0
  66. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/Tests/Tests.m +0 -0
  67. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +0 -0
  68. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT/AppDelegate.swift +0 -0
  69. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
  70. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +0 -0
  71. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT/Info.plist +0 -0
  72. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +0 -0
  73. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT/ViewController.swift +0 -0
  74. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +0 -0
  75. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  76. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +0 -0
  77. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/Podfile +0 -0
  78. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/Tests/Info.plist +0 -0
  79. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/macos-swift/Example/Tests/Tests.swift +0 -0
  80. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT/AppDelegate.swift +0 -0
  81. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +0 -0
  82. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +0 -0
  83. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Example-Bridging-Header.h +4 -0
  84. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  85. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT/Info.plist +0 -0
  86. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/STTestAppDelegate.swift +16 -0
  87. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Tests-Bridging-Header.h +4 -0
  88. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT/ViewController.swift +7 -1
  89. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/YKEmptyOcFile.m +9 -0
  90. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +41 -20
  91. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  92. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  93. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +0 -0
  94. data/lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile +35 -0
  95. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/Tests/Info.plist +0 -0
  96. data/lib/yk_command/project/{YKProjectTemplate → full_component_demo_template}/templates/swift/Example/Tests/Tests.swift +0 -0
  97. data/lib/yk_command/project/setup/ConfigureMacOSSwift.rb +1 -1
  98. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/.gitignore +0 -0
  99. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/.travis.yml +0 -0
  100. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/CODE_OF_CONDUCT.md +0 -0
  101. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/LICENSE +0 -0
  102. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/NAME-osx.podspec +0 -0
  103. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/NAME.podspec +1 -1
  104. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/POD_LICENSE +0 -0
  105. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/POD_README.md +0 -0
  106. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/Pod/Assets/.gitkeep +0 -0
  107. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/Pod/Classes/.gitkeep +0 -0
  108. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/README.md +0 -0
  109. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/configure +0 -0
  110. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +0 -0
  111. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +0 -0
  112. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/CPDAppDelegate.h +0 -0
  113. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/CPDAppDelegate.m +0 -0
  114. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/CPDViewController.h +0 -0
  115. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/CPDViewController.m +0 -0
  116. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  117. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/PROJECT-Info.plist +0 -0
  118. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +0 -0
  119. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +0 -0
  120. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT/main.m +0 -0
  121. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +0 -0
  122. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  123. data/lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  124. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +0 -0
  125. data/lib/yk_command/project/{YKProjectTemplate → simple_component_demo_template}/templates/ios/Example/Podfile +0 -0
  126. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/Tests/Tests-Info.plist +0 -0
  127. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/Tests/Tests-Prefix.pch +0 -0
  128. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/Tests/Tests.m +0 -0
  129. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +0 -0
  130. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT/AppDelegate.swift +0 -0
  131. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
  132. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +0 -0
  133. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT/Info.plist +0 -0
  134. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +0 -0
  135. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT/ViewController.swift +0 -0
  136. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +0 -0
  137. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  138. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +0 -0
  139. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/Podfile +0 -0
  140. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/Tests/Info.plist +0 -0
  141. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/macos-swift/Example/Tests/Tests.swift +0 -0
  142. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT/AppDelegate.swift +0 -0
  143. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +0 -0
  144. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +19 -2
  145. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/EmptyOcFile.m +9 -0
  146. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
  147. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT/Info.plist +0 -0
  148. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/PROJECT_Example-Bridging-Header.h +4 -0
  149. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/PROJECT_Tests-Bridging-Header.h +4 -0
  150. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT/ViewController.swift +3 -1
  151. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +41 -20
  152. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
  153. data/lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  154. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +0 -0
  155. data/lib/yk_command/project/{YKProjectTemplate → simple_component_demo_template}/templates/swift/Example/Podfile +0 -0
  156. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/Tests/Info.plist +0 -0
  157. data/lib/yk_command/project/{simple_project_template → simple_component_demo_template}/templates/swift/Example/Tests/Tests.swift +0 -0
  158. data/lib/yk_command/project/yk_project.rb +2 -2
  159. data/lib/yk_command/version.rb +1 -1
  160. metadata +147 -122
  161. data/.idea/sonarlint/issuestore/2/2/2264693887a1513e6c4ed16a6231e00d3045ec4e +0 -0
  162. data/.idea/sonarlint/issuestore/2/4/2461a61a84d866812e64ff95d40bd7836fb136ea +0 -0
  163. data/.idea/sonarlint/issuestore/2/e/2e113f2d3dc9bee6a98073d85966fbd9773c044f +0 -0
  164. data/.idea/sonarlint/issuestore/7/1/71fc201a1096db97453882ad1da5120a71f77bb5 +0 -0
  165. data/.idea/sonarlint/issuestore/7/e/7ed8a0c3d2507e911337de44fdef07f89e35091a +0 -0
  166. data/.idea/sonarlint/issuestore/9/5/95a45210972238034e9fed522811176fe20117d3 +0 -0
  167. data/.idea/sonarlint/issuestore/9/7/97c2c9c7adeb7fa2e6ffbf07cba2418868ac9739 +0 -0
  168. data/.idea/sonarlint/issuestore/a/d/ad7bffefc6248a8f673a10e668a82bdbbe38a3e3 +0 -0
  169. data/.idea/sonarlint/issuestore/e/5/e5580d669a0c327c5b0897ba7dd8465a3d4db45a +0 -0
  170. data/lib/yk_command/module/template/swift/RouterDefine.swift +0 -28
  171. data/lib/yk_command/project/simple_project_template/templates/ios/Example/Podfile +0 -19
  172. data/lib/yk_command/project/simple_project_template/templates/swift/Example/Podfile +0 -20
@@ -13,6 +13,8 @@
13
13
  607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
14
14
  607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
15
15
  607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
16
+ DCDBF739291BA2DC001CC26D /* EmptyOcFile.m in Sources */ = {isa = PBXBuildFile; fileRef = DCDBF738291BA2DC001CC26D /* EmptyOcFile.m */; };
17
+ DCDBF73A291BA2DC001CC26D /* EmptyOcFile.m in Sources */ = {isa = PBXBuildFile; fileRef = DCDBF738291BA2DC001CC26D /* EmptyOcFile.m */; };
16
18
  /* End PBXBuildFile section */
17
19
 
18
20
  /* Begin PBXContainerItemProxy section */
@@ -21,7 +23,7 @@
21
23
  containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
22
24
  proxyType = 1;
23
25
  remoteGlobalIDString = 607FACCF1AFB9204008FA782;
24
- remoteInfo = "PROJECT";
26
+ remoteInfo = PROJECT;
25
27
  };
26
28
  /* End PBXContainerItemProxy section */
27
29
 
@@ -36,6 +38,9 @@
36
38
  607FACE51AFB9204008FA782 /* PROJECT_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PROJECT_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
37
39
  607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
38
40
  607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
41
+ DCDBF736291BA2DC001CC26D /* PROJECT_Example-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PROJECT_Example-Bridging-Header.h"; sourceTree = "<group>"; };
42
+ DCDBF737291BA2DC001CC26D /* PROJECT_Tests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PROJECT_Tests-Bridging-Header.h"; sourceTree = "<group>"; };
43
+ DCDBF738291BA2DC001CC26D /* EmptyOcFile.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EmptyOcFile.m; sourceTree = "<group>"; };
39
44
  /* End PBXFileReference section */
40
45
 
41
46
  /* Begin PBXFrameworksBuildPhase section */
@@ -80,13 +85,16 @@
80
85
  children = (
81
86
  607FACD51AFB9204008FA782 /* AppDelegate.swift */,
82
87
  607FACD71AFB9204008FA782 /* ViewController.swift */,
88
+ DCDBF738291BA2DC001CC26D /* EmptyOcFile.m */,
83
89
  607FACD91AFB9204008FA782 /* Main.storyboard */,
84
90
  607FACDC1AFB9204008FA782 /* Images.xcassets */,
85
91
  607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
86
92
  607FACD31AFB9204008FA782 /* Supporting Files */,
93
+ DCDBF736291BA2DC001CC26D /* PROJECT_Example-Bridging-Header.h */,
94
+ DCDBF737291BA2DC001CC26D /* PROJECT_Tests-Bridging-Header.h */,
87
95
  );
88
96
  name = "Example for PROJECT";
89
- path = "PROJECT";
97
+ path = PROJECT;
90
98
  sourceTree = "<group>";
91
99
  };
92
100
  607FACD31AFB9204008FA782 /* Supporting Files */ = {
@@ -136,8 +144,8 @@
136
144
  );
137
145
  dependencies = (
138
146
  );
139
- name = "PROJECT_Example";
140
- productName = "PROJECT";
147
+ name = PROJECT_Example;
148
+ productName = PROJECT;
141
149
  productReference = 607FACD01AFB9204008FA782 /* PROJECT_Example.app */;
142
150
  productType = "com.apple.product-type.application";
143
151
  };
@@ -154,7 +162,7 @@
154
162
  dependencies = (
155
163
  607FACE71AFB9204008FA782 /* PBXTargetDependency */,
156
164
  );
157
- name = "PROJECT_Tests";
165
+ name = PROJECT_Tests;
158
166
  productName = Tests;
159
167
  productReference = 607FACE51AFB9204008FA782 /* PROJECT_Tests.xctest */;
160
168
  productType = "com.apple.product-type.bundle.unit-test";
@@ -171,11 +179,11 @@
171
179
  TargetAttributes = {
172
180
  607FACCF1AFB9204008FA782 = {
173
181
  CreatedOnToolsVersion = 6.3.1;
174
- LastSwiftMigration = 0900;
182
+ LastSwiftMigration = 1400;
175
183
  };
176
184
  607FACE41AFB9204008FA782 = {
177
185
  CreatedOnToolsVersion = 6.3.1;
178
- LastSwiftMigration = 0900;
186
+ LastSwiftMigration = 1400;
179
187
  TestTargetID = 607FACCF1AFB9204008FA782;
180
188
  };
181
189
  };
@@ -185,6 +193,7 @@
185
193
  developmentRegion = English;
186
194
  hasScannedForEncodings = 0;
187
195
  knownRegions = (
196
+ English,
188
197
  en,
189
198
  Base,
190
199
  );
@@ -225,6 +234,7 @@
225
234
  buildActionMask = 2147483647;
226
235
  files = (
227
236
  607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,
237
+ DCDBF739291BA2DC001CC26D /* EmptyOcFile.m in Sources */,
228
238
  607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
229
239
  );
230
240
  runOnlyForDeploymentPostprocessing = 0;
@@ -234,6 +244,7 @@
234
244
  buildActionMask = 2147483647;
235
245
  files = (
236
246
  607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
247
+ DCDBF73A291BA2DC001CC26D /* EmptyOcFile.m in Sources */,
237
248
  );
238
249
  runOnlyForDeploymentPostprocessing = 0;
239
250
  };
@@ -287,8 +298,8 @@
287
298
  CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
288
299
  CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
289
300
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
290
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
291
- CLANG_WARN_STRICT_PROTOTYPES = YES;
301
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
302
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
292
303
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
293
304
  CLANG_WARN_UNREACHABLE_CODE = YES;
294
305
  CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
@@ -337,11 +348,11 @@
337
348
  CLANG_WARN_ENUM_CONVERSION = YES;
338
349
  CLANG_WARN_INFINITE_RECURSION = YES;
339
350
  CLANG_WARN_INT_CONVERSION = YES;
340
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
341
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
351
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
352
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
342
353
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
343
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
344
- CLANG_WARN_STRICT_PROTOTYPES = YES;
354
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
355
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
345
356
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
346
357
  CLANG_WARN_UNREACHABLE_CODE = YES;
347
358
  CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
@@ -370,13 +381,16 @@
370
381
  isa = XCBuildConfiguration;
371
382
  buildSettings = {
372
383
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
373
- INFOPLIST_FILE = "PROJECT/Info.plist";
384
+ CLANG_ENABLE_MODULES = YES;
385
+ INFOPLIST_FILE = PROJECT/Info.plist;
374
386
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
375
387
  MODULE_NAME = ExampleApp;
376
388
  PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
377
389
  PRODUCT_NAME = "$(TARGET_NAME)";
378
- SWIFT_SWIFT3_OBJC_INFERENCE = Default;
379
- SWIFT_VERSION = 4.0;
390
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/PROJECT_Example-Bridging-Header.h";
391
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
392
+ SWIFT_SWIFT3_OBJC_INFERENCE = Default;
393
+ SWIFT_VERSION = 4.0;
380
394
  };
381
395
  name = Debug;
382
396
  };
@@ -384,19 +398,22 @@
384
398
  isa = XCBuildConfiguration;
385
399
  buildSettings = {
386
400
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
387
- INFOPLIST_FILE = "PROJECT/Info.plist";
401
+ CLANG_ENABLE_MODULES = YES;
402
+ INFOPLIST_FILE = PROJECT/Info.plist;
388
403
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
389
404
  MODULE_NAME = ExampleApp;
390
405
  PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
391
406
  PRODUCT_NAME = "$(TARGET_NAME)";
392
- SWIFT_SWIFT3_OBJC_INFERENCE = Default;
393
- SWIFT_VERSION = 4.0;
407
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/PROJECT_Example-Bridging-Header.h";
408
+ SWIFT_SWIFT3_OBJC_INFERENCE = Default;
409
+ SWIFT_VERSION = 4.0;
394
410
  };
395
411
  name = Release;
396
412
  };
397
413
  607FACF31AFB9204008FA782 /* Debug */ = {
398
414
  isa = XCBuildConfiguration;
399
415
  buildSettings = {
416
+ CLANG_ENABLE_MODULES = YES;
400
417
  FRAMEWORK_SEARCH_PATHS = (
401
418
  "$(PLATFORM_DIR)/Developer/Library/Frameworks",
402
419
  "$(inherited)",
@@ -409,6 +426,8 @@
409
426
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
410
427
  PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
411
428
  PRODUCT_NAME = "$(TARGET_NAME)";
429
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/PROJECT_Tests-Bridging-Header.h";
430
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
412
431
  SWIFT_SWIFT3_OBJC_INFERENCE = Default;
413
432
  SWIFT_VERSION = 4.0;
414
433
  TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
@@ -418,6 +437,7 @@
418
437
  607FACF41AFB9204008FA782 /* Release */ = {
419
438
  isa = XCBuildConfiguration;
420
439
  buildSettings = {
440
+ CLANG_ENABLE_MODULES = YES;
421
441
  FRAMEWORK_SEARCH_PATHS = (
422
442
  "$(PLATFORM_DIR)/Developer/Library/Frameworks",
423
443
  "$(inherited)",
@@ -426,8 +446,9 @@
426
446
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
427
447
  PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
428
448
  PRODUCT_NAME = "$(TARGET_NAME)";
429
- SWIFT_VERSION = 4.0;
449
+ SWIFT_OBJC_BRIDGING_HEADER = "PROJECT/PROJECT_Tests-Bridging-Header.h";
430
450
  SWIFT_SWIFT3_OBJC_INFERENCE = Default;
451
+ SWIFT_VERSION = 4.0;
431
452
  TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
432
453
  };
433
454
  name = Release;
@@ -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>
@@ -28,9 +28,9 @@ module YkCommand
28
28
  current_class_path = Pathname.new(File.dirname(File.expand_path __FILE__))
29
29
 
30
30
  FileUtils.remove_dir("#{current_class_path.to_s + '/temp'}", true)
31
- temp_foler = 'YKProjectTemplate'
31
+ temp_foler = 'full_component_demo_template'
32
32
  if @is_simple == true
33
- temp_foler = 'simple_project_template'
33
+ temp_foler = 'simple_component_demo_template'
34
34
  end
35
35
  FileUtils.copy_entry "#{current_class_path.to_s + "/#{temp_foler}"}", "#{current_class_path.to_s + '/temp'}"
36
36
  if @is_simple != true
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module YkCommand
4
- VERSION = '0.6.2'.freeze
4
+ VERSION = '0.6.4'.freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yk_command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Major Tom
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-23 00:00:00.000000000 Z
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -230,33 +230,26 @@ executables:
230
230
  extensions: []
231
231
  extra_rdoc_files: []
232
232
  files:
233
+ - ".DS_Store"
233
234
  - ".YKPodSpecConfig.yml"
234
235
  - ".idea/.gitignore"
236
+ - ".idea/inspectionProfiles/Project_Default.xml"
235
237
  - ".idea/misc.xml"
236
238
  - ".idea/modules.xml"
237
239
  - ".idea/sonarlint/issuestore/0/d/0d7a5f844cb7a763c4b02c8788a45a497537e9d4"
238
240
  - ".idea/sonarlint/issuestore/1/9/19beed89439e4bbf29ca633ebffb0979a334a05d"
239
- - ".idea/sonarlint/issuestore/2/2/2264693887a1513e6c4ed16a6231e00d3045ec4e"
240
- - ".idea/sonarlint/issuestore/2/4/2461a61a84d866812e64ff95d40bd7836fb136ea"
241
- - ".idea/sonarlint/issuestore/2/e/2e113f2d3dc9bee6a98073d85966fbd9773c044f"
242
241
  - ".idea/sonarlint/issuestore/3/4/3423fb39097dbf652818678b749434eb36867bdf"
243
242
  - ".idea/sonarlint/issuestore/4/4/44b7fa1ba50397e71d88bd69389f1ec917165cfb"
244
243
  - ".idea/sonarlint/issuestore/4/6/460ee6442cf29ef54774da00475d1b5a4bd35a75"
245
244
  - ".idea/sonarlint/issuestore/5/1/512554f10221132e2995f116a1bc380edc569ec4"
246
245
  - ".idea/sonarlint/issuestore/6/e/6e1b71034e8e2f84d8f8236b269fef92a4a51797"
247
- - ".idea/sonarlint/issuestore/7/1/71fc201a1096db97453882ad1da5120a71f77bb5"
248
- - ".idea/sonarlint/issuestore/7/e/7ed8a0c3d2507e911337de44fdef07f89e35091a"
249
- - ".idea/sonarlint/issuestore/9/5/95a45210972238034e9fed522811176fe20117d3"
250
- - ".idea/sonarlint/issuestore/9/7/97c2c9c7adeb7fa2e6ffbf07cba2418868ac9739"
251
246
  - ".idea/sonarlint/issuestore/9/a/9ac8606ab5816ca6769cd53216a107d7d06ca971"
252
247
  - ".idea/sonarlint/issuestore/a/6/a67e5ecfa13044750ab8599881f66237821a8b38"
253
248
  - ".idea/sonarlint/issuestore/a/7/a7f1546c0b6a93fd23b7fc1506b2eb0d13e011c2"
254
- - ".idea/sonarlint/issuestore/a/d/ad7bffefc6248a8f673a10e668a82bdbbe38a3e3"
255
249
  - ".idea/sonarlint/issuestore/b/a/ba47c112fc95dd748a99abb0290610022df254a7"
256
250
  - ".idea/sonarlint/issuestore/b/e/be2bfbadd6efe69882507c3a03b1b96c46f3dcbe"
257
251
  - ".idea/sonarlint/issuestore/c/f/cf949c4c054253d95250aa9644f2b805b2aa0d2a"
258
252
  - ".idea/sonarlint/issuestore/d/5/d594a688a538c9bebe38deb974bd46055c65a93c"
259
- - ".idea/sonarlint/issuestore/e/5/e5580d669a0c327c5b0897ba7dd8465a3d4db45a"
260
253
  - ".idea/sonarlint/issuestore/e/e/ee825dc90668e04039ee525c5858c5736562c9f5"
261
254
  - ".idea/sonarlint/issuestore/f/6/f6e109e4c314cef09022792f4b88dd267a682d28"
262
255
  - ".idea/sonarlint/issuestore/index.pb"
@@ -271,10 +264,13 @@ files:
271
264
  - bin/console
272
265
  - bin/setup
273
266
  - bin/yk_command
267
+ - debugProject/.DS_Store
274
268
  - images/Xnip2022-04-26_17-25-30.jpg
275
269
  - images/Xnip2022-04-26_17-27-32.jpg
276
270
  - images/Xnip2022-04-26_17-30-36.jpg
271
+ - lib/.DS_Store
277
272
  - lib/yk_command.rb
273
+ - lib/yk_command/.DS_Store
278
274
  - lib/yk_command/analyze/analyze.rb
279
275
  - lib/yk_command/analyze/dependency_result.rb
280
276
  - lib/yk_command/analyze/request.rb
@@ -283,8 +279,13 @@ files:
283
279
  - lib/yk_command/component_manage/component_manage_platform.rb
284
280
  - lib/yk_command/config/yk_config.rb
285
281
  - lib/yk_command/gitlab/yk_gitlab.rb
282
+ - lib/yk_command/module/.DS_Store
286
283
  - lib/yk_command/module/module_handler.rb
284
+ - lib/yk_command/module/template/.DS_Store
285
+ - lib/yk_command/module/template/objc/.DS_Store
287
286
  - lib/yk_command/module/template/objc/CategoryHeader.h
287
+ - lib/yk_command/module/template/objc/Helper.h
288
+ - lib/yk_command/module/template/objc/Helper.m
288
289
  - lib/yk_command/module/template/objc/PrefixHeader.pch
289
290
  - lib/yk_command/module/template/objc/RouterDefine.h
290
291
  - lib/yk_command/module/template/objc/RouterRegister.h
@@ -294,128 +295,152 @@ files:
294
295
  - lib/yk_command/module/template/objc/ServiceRegister.m
295
296
  - lib/yk_command/module/template/objc/ToolsHeader.h
296
297
  - lib/yk_command/module/template/objc/VendorHeader.h
298
+ - lib/yk_command/module/template/objc/demo/AppDelegate.swift
299
+ - lib/yk_command/module/template/objc/demo/DemoVC_sw.swift
297
300
  - lib/yk_command/module/template/objc/demo/DemoViewController.h
298
301
  - lib/yk_command/module/template/objc/demo/DemoViewController.m
299
302
  - lib/yk_command/module/template/objc/demo/DemoViewModel.h
300
303
  - lib/yk_command/module/template/objc/demo/DemoViewModel.m
301
- - lib/yk_command/module/template/swift/RouterDefine.swift
304
+ - lib/yk_command/module/template/swift/.DS_Store
305
+ - lib/yk_command/module/template/swift/ModuleRegisterMix.h
306
+ - lib/yk_command/module/template/swift/ModuleRegisterMix.m
307
+ - lib/yk_command/module/template/swift/ModuleRegisterSwift.swift
308
+ - lib/yk_command/module/template/swift/RouterDefineSwift.swift
309
+ - lib/yk_command/module/template/swift/RouterRegisterSwift.swift
310
+ - lib/yk_command/module/template/swift/ServiceRegisterSwift.swift
311
+ - lib/yk_command/module/template/swift/Tool.swift
312
+ - lib/yk_command/module/template/tools/.DS_Store
313
+ - lib/yk_command/module/template/tools/PrefixHeader.pch
314
+ - lib/yk_command/module/template/tools/PrefixHeader_swift.swift
302
315
  - lib/yk_command/module/yk_module.rb
303
- - lib/yk_command/project/YKProjectTemplate/.gitignore
304
- - lib/yk_command/project/YKProjectTemplate/.travis.yml
305
- - lib/yk_command/project/YKProjectTemplate/CODE_OF_CONDUCT.md
306
- - lib/yk_command/project/YKProjectTemplate/LICENSE
307
- - lib/yk_command/project/YKProjectTemplate/NAME-osx.podspec
308
- - lib/yk_command/project/YKProjectTemplate/NAME.podspec
309
- - lib/yk_command/project/YKProjectTemplate/POD_LICENSE
310
- - lib/yk_command/project/YKProjectTemplate/POD_README.md
311
- - lib/yk_command/project/YKProjectTemplate/Pod/Assets/.gitkeep
312
- - lib/yk_command/project/YKProjectTemplate/Pod/Classes/.gitkeep
313
- - lib/yk_command/project/YKProjectTemplate/README.md
314
- - lib/yk_command/project/YKProjectTemplate/configure
315
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj
316
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
317
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
318
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard
319
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard
320
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.h
321
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.m
322
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.h
323
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.m
324
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
325
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Info.plist
326
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Prefix.pch
327
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings
328
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/main.m
329
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Podfile
330
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Info.plist
331
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Prefix.pch
332
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests.m
333
- - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/en.lproj/InfoPlist.strings
334
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj
335
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
336
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
337
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/AppDelegate.swift
338
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json
339
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard
340
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Info.plist
341
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/PROJECT.entitlements
342
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/ViewController.swift
343
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Podfile
344
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Info.plist
345
- - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Tests.swift
346
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj
347
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
348
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
349
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/AppDelegate.swift
350
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib
351
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard
352
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
353
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Info.plist
354
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/ViewController.swift
355
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Podfile
356
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Info.plist
357
- - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Tests.swift
316
+ - lib/yk_command/project/.DS_Store
317
+ - lib/yk_command/project/full_component_demo_template/.gitignore
318
+ - lib/yk_command/project/full_component_demo_template/.travis.yml
319
+ - lib/yk_command/project/full_component_demo_template/CODE_OF_CONDUCT.md
320
+ - lib/yk_command/project/full_component_demo_template/LICENSE
321
+ - lib/yk_command/project/full_component_demo_template/NAME-osx.podspec
322
+ - lib/yk_command/project/full_component_demo_template/NAME.podspec
323
+ - lib/yk_command/project/full_component_demo_template/POD_LICENSE
324
+ - lib/yk_command/project/full_component_demo_template/POD_README.md
325
+ - lib/yk_command/project/full_component_demo_template/Pod/Assets/.gitkeep
326
+ - lib/yk_command/project/full_component_demo_template/Pod/Classes/.gitkeep
327
+ - lib/yk_command/project/full_component_demo_template/README.md
328
+ - lib/yk_command/project/full_component_demo_template/configure
329
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj
330
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
331
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
332
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
333
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard
334
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard
335
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.h
336
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.m
337
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.h
338
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.m
339
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
340
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Info.plist
341
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Prefix.pch
342
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings
343
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/PROJECT/main.m
344
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/Podfile
345
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/Tests-Info.plist
346
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/Tests-Prefix.pch
347
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/Tests.m
348
+ - lib/yk_command/project/full_component_demo_template/templates/ios/Example/Tests/en.lproj/InfoPlist.strings
349
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj
350
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
351
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
352
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/AppDelegate.swift
353
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json
354
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard
355
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/Info.plist
356
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/PROJECT.entitlements
357
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/PROJECT/ViewController.swift
358
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/Podfile
359
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/Tests/Info.plist
360
+ - lib/yk_command/project/full_component_demo_template/templates/macos-swift/Example/Tests/Tests.swift
361
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj
362
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
363
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
364
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
365
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/AppDelegate.swift
366
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib
367
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard
368
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Example-Bridging-Header.h
369
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
370
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Info.plist
371
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/STTestAppDelegate.swift
372
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/Tests-Bridging-Header.h
373
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/ViewController.swift
374
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/PROJECT/YKEmptyOcFile.m
375
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/Podfile
376
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/Tests/Info.plist
377
+ - lib/yk_command/project/full_component_demo_template/templates/swift/Example/Tests/Tests.swift
358
378
  - lib/yk_command/project/setup/ConfigureMacOSSwift.rb
359
379
  - lib/yk_command/project/setup/ConfigureSwift.rb
360
380
  - lib/yk_command/project/setup/ConfigureiOS.rb
361
381
  - lib/yk_command/project/setup/MessageBank.rb
362
382
  - lib/yk_command/project/setup/ProjectManipulator.rb
363
383
  - lib/yk_command/project/setup/TemplateConfigurator.rb
364
- - lib/yk_command/project/simple_project_template/.gitignore
365
- - lib/yk_command/project/simple_project_template/.travis.yml
366
- - lib/yk_command/project/simple_project_template/CODE_OF_CONDUCT.md
367
- - lib/yk_command/project/simple_project_template/LICENSE
368
- - lib/yk_command/project/simple_project_template/NAME-osx.podspec
369
- - lib/yk_command/project/simple_project_template/NAME.podspec
370
- - lib/yk_command/project/simple_project_template/POD_LICENSE
371
- - lib/yk_command/project/simple_project_template/POD_README.md
372
- - lib/yk_command/project/simple_project_template/Pod/Assets/.gitkeep
373
- - lib/yk_command/project/simple_project_template/Pod/Classes/.gitkeep
374
- - lib/yk_command/project/simple_project_template/README.md
375
- - lib/yk_command/project/simple_project_template/configure
376
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj
377
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
378
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
379
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard
380
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard
381
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDAppDelegate.h
382
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDAppDelegate.m
383
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDViewController.h
384
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDViewController.m
385
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
386
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/PROJECT-Info.plist
387
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/PROJECT-Prefix.pch
388
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings
389
- - lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/main.m
390
- - lib/yk_command/project/simple_project_template/templates/ios/Example/Podfile
391
- - lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/Tests-Info.plist
392
- - lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/Tests-Prefix.pch
393
- - lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/Tests.m
394
- - lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/en.lproj/InfoPlist.strings
395
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj
396
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
397
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
398
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/AppDelegate.swift
399
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json
400
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard
401
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/Info.plist
402
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/PROJECT.entitlements
403
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/ViewController.swift
404
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/Podfile
405
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/Tests/Info.plist
406
- - lib/yk_command/project/simple_project_template/templates/macos-swift/Example/Tests/Tests.swift
407
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj
408
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
409
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
410
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/AppDelegate.swift
411
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib
412
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard
413
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
414
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Info.plist
415
- - lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/ViewController.swift
416
- - lib/yk_command/project/simple_project_template/templates/swift/Example/Podfile
417
- - lib/yk_command/project/simple_project_template/templates/swift/Example/Tests/Info.plist
418
- - lib/yk_command/project/simple_project_template/templates/swift/Example/Tests/Tests.swift
384
+ - lib/yk_command/project/simple_component_demo_template/.gitignore
385
+ - lib/yk_command/project/simple_component_demo_template/.travis.yml
386
+ - lib/yk_command/project/simple_component_demo_template/CODE_OF_CONDUCT.md
387
+ - lib/yk_command/project/simple_component_demo_template/LICENSE
388
+ - lib/yk_command/project/simple_component_demo_template/NAME-osx.podspec
389
+ - lib/yk_command/project/simple_component_demo_template/NAME.podspec
390
+ - lib/yk_command/project/simple_component_demo_template/POD_LICENSE
391
+ - lib/yk_command/project/simple_component_demo_template/POD_README.md
392
+ - lib/yk_command/project/simple_component_demo_template/Pod/Assets/.gitkeep
393
+ - lib/yk_command/project/simple_component_demo_template/Pod/Classes/.gitkeep
394
+ - lib/yk_command/project/simple_component_demo_template/README.md
395
+ - lib/yk_command/project/simple_component_demo_template/configure
396
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj
397
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
398
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
399
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
400
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard
401
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard
402
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.h
403
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDAppDelegate.m
404
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.h
405
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/CPDViewController.m
406
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
407
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Info.plist
408
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/PROJECT-Prefix.pch
409
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings
410
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/PROJECT/main.m
411
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Podfile
412
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/Tests-Info.plist
413
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/Tests-Prefix.pch
414
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/Tests.m
415
+ - lib/yk_command/project/simple_component_demo_template/templates/ios/Example/Tests/en.lproj/InfoPlist.strings
416
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj
417
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
418
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
419
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/AppDelegate.swift
420
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json
421
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard
422
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/Info.plist
423
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/PROJECT.entitlements
424
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/PROJECT/ViewController.swift
425
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/Podfile
426
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/Tests/Info.plist
427
+ - lib/yk_command/project/simple_component_demo_template/templates/macos-swift/Example/Tests/Tests.swift
428
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj
429
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
430
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
431
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
432
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/AppDelegate.swift
433
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib
434
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard
435
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/EmptyOcFile.m
436
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
437
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/Info.plist
438
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/PROJECT_Example-Bridging-Header.h
439
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/PROJECT_Tests-Bridging-Header.h
440
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/PROJECT/ViewController.swift
441
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/Podfile
442
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/Tests/Info.plist
443
+ - lib/yk_command/project/simple_component_demo_template/templates/swift/Example/Tests/Tests.swift
419
444
  - lib/yk_command/project/test_examples/kiwi.m
420
445
  - lib/yk_command/project/test_examples/quick.swift
421
446
  - lib/yk_command/project/test_examples/specta.m