yk_command 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/.idea/vcs.xml +2 -0
  3. data/.idea/yk_command.iml +6 -6
  4. data/Gemfile.lock +3 -3
  5. data/lib/yk_command/analyze/analyze.rb +4 -0
  6. data/lib/yk_command/bot/wx_bot.rb +0 -10
  7. data/lib/yk_command/module/module_handler.rb +119 -0
  8. data/lib/yk_command/module/template/objc/CategoryHeader.h +1 -1
  9. data/lib/yk_command/module/template/objc/RouterRegister.m +6 -5
  10. data/lib/yk_command/module/template/objc/ServiceRegister.m +1 -1
  11. data/lib/yk_command/module/yk_module.rb +138 -144
  12. data/lib/yk_command/project/YKProjectTemplate/.gitignore +37 -0
  13. data/lib/yk_command/project/YKProjectTemplate/CODE_OF_CONDUCT.md +40 -0
  14. data/lib/yk_command/project/YKProjectTemplate/LICENSE +21 -0
  15. data/lib/yk_command/project/YKProjectTemplate/NAME-osx.podspec +43 -0
  16. data/lib/yk_command/project/YKProjectTemplate/NAME.podspec +27 -0
  17. data/lib/yk_command/project/YKProjectTemplate/POD_LICENSE +19 -0
  18. data/lib/yk_command/project/YKProjectTemplate/POD_README.md +29 -0
  19. data/lib/yk_command/project/YKProjectTemplate/Pod/Assets/.gitkeep +0 -0
  20. data/lib/yk_command/project/YKProjectTemplate/Pod/Classes/.gitkeep +0 -0
  21. data/lib/yk_command/project/YKProjectTemplate/README.md +22 -0
  22. data/lib/yk_command/project/YKProjectTemplate/configure +12 -0
  23. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +31 -0
  24. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +79 -0
  25. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.h +15 -0
  26. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.m +46 -0
  27. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.h +13 -0
  28. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.m +60 -0
  29. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +98 -0
  30. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Info.plist +49 -0
  31. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +16 -0
  32. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +2 -0
  33. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/main.m +17 -0
  34. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +500 -0
  35. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  36. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +101 -0
  37. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Podfile +19 -0
  38. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Info.plist +22 -0
  39. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Prefix.pch +7 -0
  40. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests.m +9 -0
  41. data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +2 -0
  42. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/AppDelegate.swift +26 -0
  43. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  44. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +717 -0
  45. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Info.plist +30 -0
  46. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +10 -0
  47. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/ViewController.swift +27 -0
  48. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +444 -0
  49. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  50. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +103 -0
  51. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Podfile +11 -0
  52. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Info.plist +22 -0
  53. data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Tests.swift +1 -0
  54. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/AppDelegate.swift +46 -0
  55. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +46 -0
  56. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +86 -0
  57. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  58. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Info.plist +39 -0
  59. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/ViewController.swift +37 -0
  60. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +468 -0
  61. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  62. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +117 -0
  63. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Podfile +20 -0
  64. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Info.plist +24 -0
  65. data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Tests.swift +1 -0
  66. data/lib/yk_command/project/setup/ConfigureMacOSSwift.rb +46 -0
  67. data/lib/yk_command/project/setup/ConfigureSwift.rb +40 -0
  68. data/lib/yk_command/project/setup/ConfigureiOS.rb +107 -0
  69. data/lib/yk_command/project/setup/MessageBank.rb +113 -0
  70. data/lib/yk_command/project/setup/ProjectManipulator.rb +141 -0
  71. data/lib/yk_command/project/setup/TemplateConfigurator.rb +253 -0
  72. data/lib/yk_command/project/test_examples/kiwi.m +36 -0
  73. data/lib/yk_command/project/test_examples/quick.swift +50 -0
  74. data/lib/yk_command/project/test_examples/specta.m +39 -0
  75. data/lib/yk_command/project/test_examples/xctest.m +26 -0
  76. data/lib/yk_command/project/test_examples/xctest.swift +28 -0
  77. data/lib/yk_command/project/yk_project.rb +86 -0
  78. data/lib/yk_command/version.rb +1 -1
  79. data/yk_command.gemspec +2 -1
  80. metadata +76 -11
  81. data/.YKModuleFilesConfig.yml +0 -5
  82. data//345/275/222/346/241/243.zip +0 -0
@@ -0,0 +1,50 @@
1
+ // https://github.com/Quick/Quick
2
+
3
+ import Quick
4
+ import Nimble
5
+ import PROJECT
6
+
7
+ class TableOfContentsSpec: QuickSpec {
8
+ override func spec() {
9
+ describe("these will fail") {
10
+
11
+ it("can do maths") {
12
+ expect(1) == 2
13
+ }
14
+
15
+ it("can read") {
16
+ expect("number") == "string"
17
+ }
18
+
19
+ it("will eventually fail") {
20
+ expect("time").toEventually( equal("done") )
21
+ }
22
+
23
+ context("these will pass") {
24
+
25
+ it("can do maths") {
26
+ expect(23) == 23
27
+ }
28
+
29
+ it("can read") {
30
+ expect("🐮") == "🐮"
31
+ }
32
+
33
+ it("will eventually pass") {
34
+ var time = "passing"
35
+
36
+ DispatchQueue.main.async {
37
+ time = "done"
38
+ }
39
+
40
+ waitUntil { done in
41
+ Thread.sleep(forTimeInterval: 0.5)
42
+ expect(time) == "done"
43
+
44
+ done()
45
+ }
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,39 @@
1
+ // https://github.com/Specta/Specta
2
+
3
+ SpecBegin(InitialSpecs)
4
+
5
+ describe(@"these will fail", ^{
6
+
7
+ it(@"can do maths", ^{
8
+ expect(1).to.equal(2);
9
+ });
10
+
11
+ it(@"can read", ^{
12
+ expect(@"number").to.equal(@"string");
13
+ });
14
+
15
+ it(@"will wait for 10 seconds and fail", ^{
16
+ waitUntil(^(DoneCallback done) {
17
+
18
+ });
19
+ });
20
+ });
21
+
22
+ describe(@"these will pass", ^{
23
+
24
+ it(@"can do maths", ^{
25
+ expect(1).beLessThan(23);
26
+ });
27
+
28
+ it(@"can read", ^{
29
+ expect(@"team").toNot.contain(@"I");
30
+ });
31
+
32
+ it(@"will wait and succeed", ^{
33
+ waitUntil(^(DoneCallback done) {
34
+ done();
35
+ });
36
+ });
37
+ });
38
+
39
+ SpecEnd
@@ -0,0 +1,26 @@
1
+ @import XCTest;
2
+
3
+ @interface Tests : XCTestCase
4
+
5
+ @end
6
+
7
+ @implementation Tests
8
+
9
+ - (void)setUp
10
+ {
11
+ [super setUp];
12
+ // Put setup code here. This method is called before the invocation of each test method in the class.
13
+ }
14
+
15
+ - (void)tearDown
16
+ {
17
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
18
+ [super tearDown];
19
+ }
20
+
21
+ - (void)testExample
22
+ {
23
+ XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
24
+ }
25
+
26
+ @end
@@ -0,0 +1,28 @@
1
+ import XCTest
2
+ import PROJECT
3
+
4
+ class Tests: XCTestCase {
5
+
6
+ override func setUp() {
7
+ super.setUp()
8
+ // Put setup code here. This method is called before the invocation of each test method in the class.
9
+ }
10
+
11
+ override func tearDown() {
12
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
13
+ super.tearDown()
14
+ }
15
+
16
+ func testExample() {
17
+ // This is an example of a functional test case.
18
+ XCTAssert(true, "Pass")
19
+ }
20
+
21
+ func testPerformanceExample() {
22
+ // This is an example of a performance test case.
23
+ self.measure() {
24
+ // Put the code you want to measure the time of here.
25
+ }
26
+ }
27
+
28
+ }
@@ -0,0 +1,86 @@
1
+ require 'colored'
2
+ require 'fileutils'
3
+ require 'psych'
4
+ require 'thor/actions'
5
+ require_relative 'setup/TemplateConfigurator'
6
+
7
+ require 'pathname'
8
+
9
+ module YkCommand
10
+
11
+ PROJECT_CONFIG_FILE = '.YKProjectConfig.yml'.freeze
12
+
13
+ class YkProject < Thor
14
+ include Thor::Actions
15
+
16
+ def initialize(args = [], options = {}, config = {})
17
+ super
18
+
19
+ end
20
+
21
+ no_commands do
22
+
23
+ def prepare_project(pod_name, framework, prefix, author, at_path)
24
+
25
+ des_path = Pathname.new(at_path)
26
+ current_class_path = Pathname.new(File.dirname(File.expand_path __FILE__))
27
+
28
+ FileUtils.remove_dir("#{current_class_path.to_s + '/temp'}", true)
29
+
30
+ FileUtils.copy_entry "#{current_class_path.to_s + '/YKProjectTemplate'}", "#{current_class_path.to_s + '/temp'}"
31
+
32
+ prepare_template(read_config(at_path))
33
+
34
+ Pod::TemplateConfigurator.new(pod_name, framework, prefix, author, "#{current_class_path.to_s + '/temp'}").run
35
+ #move temp folder to destination
36
+ FileUtils.copy_entry "#{current_class_path.to_s + '/temp'}", "#{des_path.to_s + "/#{pod_name}"}"
37
+ #删除临时目录
38
+ FileUtils.remove_dir("#{current_class_path.to_s + '/temp'}", true)
39
+
40
+ end
41
+
42
+ def prepare_template(config)
43
+ current_class_path = Pathname.new(File.dirname(File.expand_path __FILE__))
44
+ temlates = ['ios', 'swift', 'macos-swift']
45
+
46
+ temlates.each do |folder|
47
+ podfile = "#{current_class_path.to_s + '/temp/templates/' + folder + '/Example/Podfile'}"
48
+
49
+ config['source'].each do |source|
50
+
51
+ file_prepend podfile, source + "\n"
52
+ end
53
+
54
+ end
55
+
56
+ end
57
+
58
+ def file_prepend(file, str)
59
+ new_contents = ""
60
+ File.open(file, 'r') do |fd|
61
+ contents = fd.read
62
+ new_contents = str << contents
63
+ end
64
+ # Overwrite file but now with prepended string on it
65
+ File.open(file, 'w') do |fd|
66
+ fd.write(new_contents)
67
+ end
68
+ end
69
+
70
+ def read_config(at_path)
71
+ hostA = 'yeah'
72
+ hostB = 'ka'
73
+ config_repo_url = "http://gitlab.#{hostA}#{hostB}.com/App/iOS/YKComponents/com-manage-platform-resources/configruation-files.git"
74
+ system("git clone #{config_repo_url} #{at_path+'/configruation-files'}")
75
+
76
+ config_file_path = "#{at_path}/#{PROJECT_CONFIG_FILE}"
77
+ FileUtils.copy_file "#{at_path+'/configruation-files/'+PROJECT_CONFIG_FILE}", config_file_path
78
+ FileUtils.remove_dir("#{at_path+'/configruation-files'}", true)
79
+
80
+ File.exist?(config_file_path) ? YAML.load_file(config_file_path) : {}
81
+ end
82
+
83
+ end
84
+
85
+ end
86
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module YkCommand
4
- VERSION = '0.5.0'.freeze
4
+ VERSION = '0.5.1'.freeze
5
5
  end
data/yk_command.gemspec CHANGED
@@ -44,9 +44,10 @@ Gem::Specification.new do |spec|
44
44
  spec.add_dependency 'thor'
45
45
  spec.add_dependency 'colored'
46
46
  spec.add_dependency 'colored2'
47
- spec.add_dependency 'pathname','0.1.0'
48
47
  spec.add_dependency 'httparty'
49
48
  spec.add_dependency 'wechat_work_webhook'
49
+
50
+ spec.add_dependency 'rubyzip'
50
51
  # For more information and examples about making a new gem, checkout our
51
52
  # guide at: https://bundler.io/guides/creating_gem.html
52
53
  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.5.0
4
+ version: 0.5.1
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-06-02 00:00:00.000000000 Z
11
+ date: 2022-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -165,21 +165,21 @@ dependencies:
165
165
  - !ruby/object:Gem::Version
166
166
  version: '0'
167
167
  - !ruby/object:Gem::Dependency
168
- name: pathname
168
+ name: httparty
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - '='
171
+ - - ">="
172
172
  - !ruby/object:Gem::Version
173
- version: 0.1.0
173
+ version: '0'
174
174
  type: :runtime
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - '='
178
+ - - ">="
179
179
  - !ruby/object:Gem::Version
180
- version: 0.1.0
180
+ version: '0'
181
181
  - !ruby/object:Gem::Dependency
182
- name: httparty
182
+ name: wechat_work_webhook
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - ">="
@@ -193,7 +193,7 @@ dependencies:
193
193
  - !ruby/object:Gem::Version
194
194
  version: '0'
195
195
  - !ruby/object:Gem::Dependency
196
- name: wechat_work_webhook
196
+ name: rubyzip
197
197
  requirement: !ruby/object:Gem::Requirement
198
198
  requirements:
199
199
  - - ">="
@@ -216,7 +216,6 @@ executables:
216
216
  extensions: []
217
217
  extra_rdoc_files: []
218
218
  files:
219
- - ".YKModuleFilesConfig.yml"
220
219
  - ".idea/.gitignore"
221
220
  - ".idea/misc.xml"
222
221
  - ".idea/modules.xml"
@@ -240,6 +239,7 @@ files:
240
239
  - lib/yk_command/analyze/request.rb
241
240
  - lib/yk_command/bot/wx_bot.rb
242
241
  - lib/yk_command/commands.rb
242
+ - lib/yk_command/module/module_handler.rb
243
243
  - lib/yk_command/module/template/objc/CategoryHeader.h
244
244
  - lib/yk_command/module/template/objc/PrefixHeader.pch
245
245
  - lib/yk_command/module/template/objc/RouterDefine.h
@@ -256,10 +256,75 @@ files:
256
256
  - lib/yk_command/module/template/objc/demo/DemoViewModel.m
257
257
  - lib/yk_command/module/template/swift/RouterDefine.swift
258
258
  - lib/yk_command/module/yk_module.rb
259
+ - lib/yk_command/project/YKProjectTemplate/.gitignore
260
+ - lib/yk_command/project/YKProjectTemplate/CODE_OF_CONDUCT.md
261
+ - lib/yk_command/project/YKProjectTemplate/LICENSE
262
+ - lib/yk_command/project/YKProjectTemplate/NAME-osx.podspec
263
+ - lib/yk_command/project/YKProjectTemplate/NAME.podspec
264
+ - lib/yk_command/project/YKProjectTemplate/POD_LICENSE
265
+ - lib/yk_command/project/YKProjectTemplate/POD_README.md
266
+ - lib/yk_command/project/YKProjectTemplate/Pod/Assets/.gitkeep
267
+ - lib/yk_command/project/YKProjectTemplate/Pod/Classes/.gitkeep
268
+ - lib/yk_command/project/YKProjectTemplate/README.md
269
+ - lib/yk_command/project/YKProjectTemplate/configure
270
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj
271
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
272
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
273
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard
274
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard
275
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.h
276
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.m
277
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.h
278
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.m
279
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
280
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Info.plist
281
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Prefix.pch
282
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings
283
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/main.m
284
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Podfile
285
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Info.plist
286
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Prefix.pch
287
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests.m
288
+ - lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/en.lproj/InfoPlist.strings
289
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj
290
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
291
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
292
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/AppDelegate.swift
293
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json
294
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard
295
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Info.plist
296
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/PROJECT.entitlements
297
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/ViewController.swift
298
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Podfile
299
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Info.plist
300
+ - lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Tests.swift
301
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj
302
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata
303
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme
304
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/AppDelegate.swift
305
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib
306
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard
307
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json
308
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Info.plist
309
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/ViewController.swift
310
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Podfile
311
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Info.plist
312
+ - lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Tests.swift
313
+ - lib/yk_command/project/setup/ConfigureMacOSSwift.rb
314
+ - lib/yk_command/project/setup/ConfigureSwift.rb
315
+ - lib/yk_command/project/setup/ConfigureiOS.rb
316
+ - lib/yk_command/project/setup/MessageBank.rb
317
+ - lib/yk_command/project/setup/ProjectManipulator.rb
318
+ - lib/yk_command/project/setup/TemplateConfigurator.rb
319
+ - lib/yk_command/project/test_examples/kiwi.m
320
+ - lib/yk_command/project/test_examples/quick.swift
321
+ - lib/yk_command/project/test_examples/specta.m
322
+ - lib/yk_command/project/test_examples/xctest.m
323
+ - lib/yk_command/project/test_examples/xctest.swift
324
+ - lib/yk_command/project/yk_project.rb
259
325
  - lib/yk_command/version.rb
260
326
  - sig/yk_command.rbs
261
327
  - yk_command.gemspec
262
- - 归档.zip
263
328
  homepage: https://github.com/lyleLH
264
329
  licenses: []
265
330
  metadata:
@@ -1,5 +0,0 @@
1
- ---
2
- :project: MerchanHome
3
- :language: swift
4
- :class_prefix: YK
5
- :author: Tom.Liu
Binary file