yk_command 0.5.5 → 0.5.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.idea/sonarlint/issuestore/0/d/0d7a5f844cb7a763c4b02c8788a45a497537e9d4 +0 -0
- data/.idea/sonarlint/issuestore/1/9/19beed89439e4bbf29ca633ebffb0979a334a05d +0 -0
- data/.idea/sonarlint/issuestore/2/2/2264693887a1513e6c4ed16a6231e00d3045ec4e +0 -0
- data/.idea/sonarlint/issuestore/2/4/2461a61a84d866812e64ff95d40bd7836fb136ea +0 -0
- data/.idea/sonarlint/issuestore/2/e/2e113f2d3dc9bee6a98073d85966fbd9773c044f +0 -0
- data/.idea/sonarlint/issuestore/3/4/3423fb39097dbf652818678b749434eb36867bdf +0 -0
- data/.idea/sonarlint/issuestore/4/4/44b7fa1ba50397e71d88bd69389f1ec917165cfb +0 -0
- data/.idea/sonarlint/issuestore/4/6/460ee6442cf29ef54774da00475d1b5a4bd35a75 +0 -0
- data/.idea/sonarlint/issuestore/5/1/512554f10221132e2995f116a1bc380edc569ec4 +0 -0
- data/.idea/sonarlint/issuestore/6/e/6e1b71034e8e2f84d8f8236b269fef92a4a51797 +0 -0
- data/.idea/sonarlint/issuestore/7/1/71fc201a1096db97453882ad1da5120a71f77bb5 +0 -0
- data/.idea/sonarlint/issuestore/7/e/7ed8a0c3d2507e911337de44fdef07f89e35091a +0 -0
- data/.idea/sonarlint/issuestore/9/5/95a45210972238034e9fed522811176fe20117d3 +0 -0
- data/.idea/sonarlint/issuestore/9/7/97c2c9c7adeb7fa2e6ffbf07cba2418868ac9739 +0 -0
- data/.idea/sonarlint/issuestore/9/a/9ac8606ab5816ca6769cd53216a107d7d06ca971 +0 -0
- data/.idea/sonarlint/issuestore/a/6/a67e5ecfa13044750ab8599881f66237821a8b38 +0 -0
- data/.idea/sonarlint/issuestore/a/7/a7f1546c0b6a93fd23b7fc1506b2eb0d13e011c2 +0 -0
- data/.idea/sonarlint/issuestore/a/d/ad7bffefc6248a8f673a10e668a82bdbbe38a3e3 +0 -0
- data/.idea/sonarlint/issuestore/b/a/ba47c112fc95dd748a99abb0290610022df254a7 +0 -0
- data/.idea/sonarlint/issuestore/b/e/be2bfbadd6efe69882507c3a03b1b96c46f3dcbe +0 -0
- data/.idea/sonarlint/issuestore/c/f/cf949c4c054253d95250aa9644f2b805b2aa0d2a +0 -0
- data/.idea/sonarlint/issuestore/d/5/d594a688a538c9bebe38deb974bd46055c65a93c +0 -0
- data/.idea/sonarlint/issuestore/d/e/de3150c01c3a946a6168173c4116741379fe3579 +0 -0
- data/.idea/sonarlint/issuestore/e/5/e5580d669a0c327c5b0897ba7dd8465a3d4db45a +0 -0
- data/.idea/sonarlint/issuestore/e/e/ee825dc90668e04039ee525c5858c5736562c9f5 +0 -0
- data/.idea/sonarlint/issuestore/f/6/f6e109e4c314cef09022792f4b88dd267a682d28 +3 -0
- data/.idea/sonarlint/issuestore/index.pb +53 -0
- data/.idea/yk_command.iml +5 -5
- data/Gemfile.lock +1 -1
- data/lib/yk_command/analyze/analyze.rb +1 -1
- data/lib/yk_command/analyze/request.rb +12 -7
- data/lib/yk_command/commands.rb +31 -1
- data/lib/yk_command/component_manage/component_manage_platform.rb +73 -4
- data/lib/yk_command/config/yk_config.rb +2 -0
- data/lib/yk_command/gitlab/yk_gitlab.rb +23 -2
- data/lib/yk_command/module/module_handler.rb +1 -4
- data/lib/yk_command/module/yk_module.rb +57 -63
- data/lib/yk_command/project/YKProjectTemplate/NAME.podspec +142 -18
- data/lib/yk_command/project/setup/ConfigureSwift.rb +2 -0
- data/lib/yk_command/project/setup/TemplateConfigurator.rb +10 -5
- data/lib/yk_command/project/simple_project_template/.gitignore +37 -0
- data/lib/yk_command/project/simple_project_template/CODE_OF_CONDUCT.md +40 -0
- data/lib/yk_command/project/simple_project_template/LICENSE +21 -0
- data/lib/yk_command/project/simple_project_template/NAME-osx.podspec +43 -0
- data/lib/yk_command/project/simple_project_template/NAME.podspec +140 -0
- data/lib/yk_command/project/simple_project_template/POD_LICENSE +19 -0
- data/lib/yk_command/project/simple_project_template/POD_README.md +29 -0
- data/lib/yk_command/project/simple_project_template/Pod/Assets/.gitkeep +0 -0
- data/lib/yk_command/project/simple_project_template/Pod/Classes/.gitkeep +0 -0
- data/lib/yk_command/project/simple_project_template/README.md +22 -0
- data/lib/yk_command/project/simple_project_template/configure +13 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +31 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +79 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDAppDelegate.h +15 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDAppDelegate.m +46 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDViewController.h +13 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/CPDViewController.m +37 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +98 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/PROJECT-Info.plist +49 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +16 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +2 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT/main.m +17 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +500 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +101 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/Podfile +19 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/Tests-Info.plist +22 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/Tests-Prefix.pch +7 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/Tests.m +9 -0
- data/lib/yk_command/project/simple_project_template/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +2 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/AppDelegate.swift +26 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +717 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/Info.plist +30 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +10 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT/ViewController.swift +27 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +444 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +103 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/Podfile +11 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/Tests/Info.plist +22 -0
- data/lib/yk_command/project/simple_project_template/templates/macos-swift/Example/Tests/Tests.swift +1 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/AppDelegate.swift +46 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +46 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +86 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/Info.plist +39 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT/ViewController.swift +30 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +468 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +117 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/Podfile +20 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/Tests/Info.plist +24 -0
- data/lib/yk_command/project/simple_project_template/templates/swift/Example/Tests/Tests.swift +1 -0
- data/lib/yk_command/project/yk_project.rb +14 -9
- data/lib/yk_command/version.rb +1 -1
- metadata +82 -2
@@ -0,0 +1,26 @@
|
|
1
|
+
//
|
2
|
+
// AppDelegate.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
|
+
@NSApplicationMain
|
12
|
+
class AppDelegate: NSObject, NSApplicationDelegate {
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
17
|
+
// Insert code here to initialize your application
|
18
|
+
}
|
19
|
+
|
20
|
+
func applicationWillTerminate(_ aNotification: Notification) {
|
21
|
+
// Insert code here to tear down your application
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
}
|
26
|
+
|
@@ -0,0 +1,58 @@
|
|
1
|
+
{
|
2
|
+
"images" : [
|
3
|
+
{
|
4
|
+
"idiom" : "mac",
|
5
|
+
"size" : "16x16",
|
6
|
+
"scale" : "1x"
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"idiom" : "mac",
|
10
|
+
"size" : "16x16",
|
11
|
+
"scale" : "2x"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"idiom" : "mac",
|
15
|
+
"size" : "32x32",
|
16
|
+
"scale" : "1x"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"idiom" : "mac",
|
20
|
+
"size" : "32x32",
|
21
|
+
"scale" : "2x"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"idiom" : "mac",
|
25
|
+
"size" : "128x128",
|
26
|
+
"scale" : "1x"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"idiom" : "mac",
|
30
|
+
"size" : "128x128",
|
31
|
+
"scale" : "2x"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"idiom" : "mac",
|
35
|
+
"size" : "256x256",
|
36
|
+
"scale" : "1x"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"idiom" : "mac",
|
40
|
+
"size" : "256x256",
|
41
|
+
"scale" : "2x"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"idiom" : "mac",
|
45
|
+
"size" : "512x512",
|
46
|
+
"scale" : "1x"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"idiom" : "mac",
|
50
|
+
"size" : "512x512",
|
51
|
+
"scale" : "2x"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"info" : {
|
55
|
+
"version" : 1,
|
56
|
+
"author" : "xcode"
|
57
|
+
}
|
58
|
+
}
|