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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ab34a7ac5fc663d1c96770326fdac1f4a5f3d8f3d179417d4e00c4500f0204c
4
- data.tar.gz: 9f3d0d732a9781f44412c6849a9db1a2b3984d80ab70af5c613bf43f3c432604
3
+ metadata.gz: d1e293fc015777458ae786c636afa1aa6587b9c216ed3b335b94bd77505d9b6e
4
+ data.tar.gz: ec9154c5160ff567679e394b8b70b9d0bd2ece8d929619decd99031b574f3a48
5
5
  SHA512:
6
- metadata.gz: 4aaefc2b2f7c8a376ee8822399d1b01d7eda0d7a60336d6197be69fb898915d7d17101d2f3a7624694c8e67269ab5b8fd56145f33ea8149bdaf9d95ad79598b4
7
- data.tar.gz: b8e3ff1c5069a11ee5fa0aee63bde5983879432132caf48439908113b07a6ac76e8966a873c1b536a7c487ced571142cbd961246cd292945f11d08ece61e5bc6
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
  # 改文件夹
@@ -1,5 +1,5 @@
1
1
  module CocoapodsYkPodUtility
2
- VERSION = '2.0.7'
2
+ VERSION = '2.0.9'
3
3
  YK_POD_TEMPLATE_PATH = File.expand_path(File.join(__FILE__, '../../../podTemplate'))
4
4
  YK_POD_BUSINESS_REGISTER_PATH = File.expand_path(File.join(__FILE__, '../../../podTemplate/register'))
5
5
 
@@ -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.7
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-02 00:00:00.000000000 Z
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