cocoapods-ykutility 2.0.7 → 2.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/configPodTemplate/gitignore +65 -0
- data/lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb +3 -0
- data/lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb +2 -0
- data/lib/cocoapods-ykutility/gem_version.rb +1 -1
- data/podTemplate/gitignore +62 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1e293fc015777458ae786c636afa1aa6587b9c216ed3b335b94bd77505d9b6e
|
4
|
+
data.tar.gz: ec9154c5160ff567679e394b8b70b9d0bd2ece8d929619decd99031b574f3a48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 817a68b9e66edcae186bedc31255623b86b7e77a9edd01d04f7438238676531a00b466c1b6d6ced1807c368449b47acbcedc432afe21d97c6710c10c50f51d57
|
7
|
+
data.tar.gz: 25b40984458ab63cd96177a25bdac5f156fb86c0725517fb915bbdf78c70cb3cb2045c522aa1525f9243efdd50362613f7886188f1adeb18f1b65787a4e451d5
|
@@ -0,0 +1,65 @@
|
|
1
|
+
.DS_Store
|
2
|
+
|
3
|
+
# Xcode
|
4
|
+
#
|
5
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
6
|
+
|
7
|
+
xcuserdata/
|
8
|
+
UserInterfaceState.xcuserstate
|
9
|
+
UserInterface.xcuserstate
|
10
|
+
*.xcuserstate
|
11
|
+
*.xcodeproj
|
12
|
+
*.xcworkspace
|
13
|
+
|
14
|
+
## Build generated
|
15
|
+
build/
|
16
|
+
DerivedData/
|
17
|
+
$SRCROOT
|
18
|
+
|
19
|
+
## Various settings
|
20
|
+
|
21
|
+
## Obj-C/Swift specific
|
22
|
+
*.hmap
|
23
|
+
*.ipa
|
24
|
+
*.dSYM.zip
|
25
|
+
*.dSYM
|
26
|
+
|
27
|
+
# CocoaPods
|
28
|
+
Pods/
|
29
|
+
|
30
|
+
# BDSASR_lib
|
31
|
+
BDSASR_lib/
|
32
|
+
BDSASR_lib.zip
|
33
|
+
.idea
|
34
|
+
|
35
|
+
# Carthage
|
36
|
+
#
|
37
|
+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
38
|
+
# Carthage/Checkouts
|
39
|
+
|
40
|
+
Carthage/Build
|
41
|
+
|
42
|
+
# fastlane
|
43
|
+
#
|
44
|
+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
45
|
+
# screenshots whenever they are needed.
|
46
|
+
# For more information about the recommended setup visit:
|
47
|
+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
48
|
+
|
49
|
+
fastlane/report.xml
|
50
|
+
fastlane/Preview.html
|
51
|
+
fastlane/screenshots/**/*.png
|
52
|
+
fastlane/test_output
|
53
|
+
|
54
|
+
# Code Injection
|
55
|
+
#
|
56
|
+
# After new code Injection tools there's a generated folder /iOSInjectionProject
|
57
|
+
# https://github.com/johnno1962/injectionforxcode
|
58
|
+
|
59
|
+
## Obj-C/Swift specific
|
60
|
+
*.hmap
|
61
|
+
*.ipa
|
62
|
+
*.dSYM.zip
|
63
|
+
*.dSYM
|
64
|
+
|
65
|
+
|
@@ -25,6 +25,7 @@ module YKPod
|
|
25
25
|
@example_dir_dest = File.join(@project_dir_dest, "Example")
|
26
26
|
|
27
27
|
@template_pod_path = File.join(CocoapodsYkPodUtility::YK_POD_TEMPLATE_PATH, @config.language)
|
28
|
+
@gitignore_file_path = File.join(CocoapodsYkPodUtility::YK_POD_TEMPLATE_PATH, "gitignore")
|
28
29
|
@template_example_path = File.join(CocoapodsYkPodUtility::YK_POD_TEMPLATE_PATH, "example")
|
29
30
|
@register_pod_path = File.join(CocoapodsYkPodUtility::YK_POD_BUSINESS_REGISTER_PATH, @config.language)
|
30
31
|
|
@@ -74,6 +75,8 @@ module YKPod
|
|
74
75
|
pod_dir_cache = File.join(@project_dir_dest, "#{@config.prefix_name}_cache")
|
75
76
|
pod_dir_dest = File.join(@project_dir_dest)
|
76
77
|
FileUtils.copy_entry(@template_pod_path, pod_dir_cache)
|
78
|
+
FileUtils.copy_file(@gitignore_file_path, File.join(pod_dir_cache, ".gitignore"))
|
79
|
+
|
77
80
|
prepare_business_pod_files(pod_dir_cache)
|
78
81
|
|
79
82
|
# 改文件夹
|
@@ -28,6 +28,7 @@ module YKPod
|
|
28
28
|
|
29
29
|
@template_pod_path = File.join(CocoapodsYkPodUtility::YK_GEN_TEMPLATE_PATH, @config.language)
|
30
30
|
@template_example_path = File.join(CocoapodsYkPodUtility::YK_GEN_TEMPLATE_PATH, "example")
|
31
|
+
@gitignore_file_path = File.join(CocoapodsYkPodUtility::YK_GEN_TEMPLATE_PATH, "gitignore")
|
31
32
|
@register_pod_path = File.join(CocoapodsYkPodUtility::YK_GEN_BUSINESS_REGISTER_PATH, @config.language)
|
32
33
|
|
33
34
|
time_str = Time.now.strftime("%Y/%m/%d")
|
@@ -76,6 +77,7 @@ module YKPod
|
|
76
77
|
pod_dir_cache = File.join(@project_dir_dest, "#{@config.prefix_name}_cache")
|
77
78
|
pod_dir_dest = File.join(@project_dir_dest)
|
78
79
|
FileUtils.copy_entry(@template_pod_path, pod_dir_cache)
|
80
|
+
FileUtils.copy_file(@gitignore_file_path, File.join(pod_dir_cache, ".gitignore"))
|
79
81
|
prepare_business_pod_files(pod_dir_cache)
|
80
82
|
|
81
83
|
# 改文件夹
|
@@ -0,0 +1,62 @@
|
|
1
|
+
.DS_Store
|
2
|
+
|
3
|
+
# Xcode
|
4
|
+
#
|
5
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
6
|
+
xcuserdata/
|
7
|
+
UserInterfaceState.xcuserstate
|
8
|
+
UserInterface.xcuserstate
|
9
|
+
*.xcuserstate
|
10
|
+
# *.xcodeproj
|
11
|
+
# *.xcworkspace
|
12
|
+
|
13
|
+
## Build generated
|
14
|
+
build/
|
15
|
+
DerivedData/
|
16
|
+
|
17
|
+
## Various settings
|
18
|
+
|
19
|
+
## Obj-C/Swift specific
|
20
|
+
*.hmap
|
21
|
+
*.ipa
|
22
|
+
*.dSYM.zip
|
23
|
+
*.dSYM
|
24
|
+
|
25
|
+
# CocoaPods
|
26
|
+
Pods/
|
27
|
+
|
28
|
+
# BDSASR_lib
|
29
|
+
BDSASR_lib/
|
30
|
+
BDSASR_lib.zip
|
31
|
+
.idea
|
32
|
+
|
33
|
+
# Carthage
|
34
|
+
#
|
35
|
+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
36
|
+
# Carthage/Checkouts
|
37
|
+
|
38
|
+
Carthage/Build
|
39
|
+
|
40
|
+
# fastlane
|
41
|
+
#
|
42
|
+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
43
|
+
# screenshots whenever they are needed.
|
44
|
+
# For more information about the recommended setup visit:
|
45
|
+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
46
|
+
|
47
|
+
fastlane/report.xml
|
48
|
+
fastlane/Preview.html
|
49
|
+
fastlane/screenshots/**/*.png
|
50
|
+
fastlane/test_output
|
51
|
+
|
52
|
+
# Code Injection
|
53
|
+
#
|
54
|
+
# After new code Injection tools there's a generated folder /iOSInjectionProject
|
55
|
+
# https://github.com/johnno1962/injectionforxcode
|
56
|
+
|
57
|
+
## Obj-C/Swift specific
|
58
|
+
*.hmap
|
59
|
+
*.ipa
|
60
|
+
*.dSYM.zip
|
61
|
+
*.dSYM
|
62
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-ykutility
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- stephen.chen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jazzy
|
@@ -164,6 +164,7 @@ files:
|
|
164
164
|
- configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig
|
165
165
|
- configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig
|
166
166
|
- configPodTemplate/example/project.yml
|
167
|
+
- configPodTemplate/gitignore
|
167
168
|
- configPodTemplate/objc/LICENSE
|
168
169
|
- configPodTemplate/objc/README.md
|
169
170
|
- configPodTemplate/objc/YKRPC_POD_NAME.podspec
|
@@ -218,6 +219,7 @@ files:
|
|
218
219
|
- podTemplate/example/YKRPC_POD_NAME_Example/Info.plist
|
219
220
|
- podTemplate/example/YKRPC_POD_NAME_Example/SceneDelegate.swift
|
220
221
|
- podTemplate/example/YKRPC_POD_NAME_Example/ViewController.swift
|
222
|
+
- podTemplate/gitignore
|
221
223
|
- podTemplate/objc/LICENSE
|
222
224
|
- podTemplate/objc/README.md
|
223
225
|
- podTemplate/objc/YKRPC_POD_NAME.podspec
|