cocoapods-ykutility 3.0.3 → 3.0.5
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.
- checksums.yaml +4 -4
- data/configPodTemplate/example/Podfile +4 -0
- data/configPodTemplate/example/config/iOS-target-main-Q.yml +4 -5
- data/configPodTemplate/example/config/iOS-target-main.yml +4 -5
- data/configPodTemplate/example/config/iOS-target-notification-Q.yml +14 -4
- data/configPodTemplate/example/config/iOS-target-notification.yml +15 -5
- data/configPodTemplate/example/project.yml +4 -4
- data/lib/cocoapods-ykutility/gem_version.rb +1 -1
- data/podTemplate/example/Podfile +5 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 566de3a1a57425da30d98581bc876292e397c8217a73304a6cd14c344e58ca80
|
4
|
+
data.tar.gz: 9fe2f5ec6d1ba9fa44c101a5ac354dc56445f7e69e4e2dc6868786e1bd8c3c6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65a31e3a421a4bededcfc6ba18c3939312d89fb00ec285a2f93c1bd7fbd9d2875f20a14c364ef7fb2cb46b1a8632ea77c441300d926fac97e75ce269d776b791
|
7
|
+
data.tar.gz: 7d1ae80472e0d8ad937cbbb95751f5098692b612ad2920df65d2ff7bcb87d5fa93bd6e3b1c03ca595f8b3481165ce3fb2b5f4b2f827922ab97bdcb1feef752b7
|
@@ -9,6 +9,10 @@ platform :ios, '9.0'
|
|
9
9
|
|
10
10
|
inhibit_all_warnings!
|
11
11
|
|
12
|
+
install! 'cocoapods',
|
13
|
+
disable_input_output_paths: true,
|
14
|
+
generate_multiple_pod_projects: true
|
15
|
+
|
12
16
|
use_frameworks! :linkage => :static # 使用 framework形势的静态库, 注释可变为.a 静态库
|
13
17
|
use_modular_headers! #此字段用于pod自动生成 swift module 伞文件
|
14
18
|
|
@@ -11,13 +11,12 @@ targets:
|
|
11
11
|
YKRPC_POD_NAME_ExampleQ:
|
12
12
|
type: application
|
13
13
|
platform: iOS
|
14
|
-
info:
|
15
|
-
path: $SRCROOT/InfoFiles/TargetMainInfo.plist
|
16
14
|
|
17
15
|
settings:
|
18
16
|
base:
|
19
17
|
# 1,2,3,4,7 1:iOS 2:macos 3:tvOS 4:watchOS 7:VisionOS
|
20
18
|
TARGETED_DEVICE_FAMILY: 1
|
19
|
+
INFOPLIST_FILE: "InfoFiles/TargetMainInfo.plist"
|
21
20
|
|
22
21
|
# sources
|
23
22
|
sources:
|
@@ -37,9 +36,9 @@ targets:
|
|
37
36
|
ReleaseQ: config/iOS-config/target-main-Q/config-enterprise/release.xcconfig
|
38
37
|
|
39
38
|
# dependencies
|
40
|
-
dependencies:
|
41
|
-
|
42
|
-
|
39
|
+
# dependencies:
|
40
|
+
# - target: NotificationContentQ
|
41
|
+
# - target: NotificationServiceQ
|
43
42
|
# - carthage: Reusable
|
44
43
|
# - package: SwiftyUtils
|
45
44
|
# - sdk: CloudKit.framework
|
@@ -11,13 +11,12 @@ targets:
|
|
11
11
|
YKRPC_POD_NAME_Example:
|
12
12
|
type: application
|
13
13
|
platform: iOS
|
14
|
-
info:
|
15
|
-
path: $SRCROOT/InfoFiles/TargetMainInfo.plist
|
16
14
|
|
17
15
|
settings:
|
18
16
|
base:
|
19
17
|
# 1,2,3,4,7 1:iOS 2:macos 3:tvOS 4:watchOS 7:VisionOS
|
20
18
|
TARGETED_DEVICE_FAMILY: 1
|
19
|
+
INFOPLIST_FILE: "InfoFiles/TargetMainInfo.plist"
|
21
20
|
|
22
21
|
# sources
|
23
22
|
sources:
|
@@ -36,9 +35,9 @@ targets:
|
|
36
35
|
ReleaseQ: config/iOS-config/target-main/config-enterprise/release.xcconfig
|
37
36
|
|
38
37
|
# dependencies
|
39
|
-
dependencies:
|
40
|
-
|
41
|
-
|
38
|
+
# dependencies:
|
39
|
+
# - target: NotificationContent
|
40
|
+
# - target: NotificationService
|
42
41
|
# - carthage: Reusable
|
43
42
|
# - package: SwiftyUtils
|
44
43
|
# - sdk: CloudKit.framework
|
@@ -14,8 +14,13 @@ targets:
|
|
14
14
|
NotificationContentQ:
|
15
15
|
platform: iOS
|
16
16
|
type: app-extension
|
17
|
-
|
18
|
-
|
17
|
+
|
18
|
+
settings:
|
19
|
+
base:
|
20
|
+
# 1,2,3,4,7 1:iOS 2:macos 3:tvOS 4:watchOS 7:VisionOS
|
21
|
+
TARGETED_DEVICE_FAMILY: 1
|
22
|
+
INFOPLIST_FILE: "InfoFiles/NotificationContentInfo.plist"
|
23
|
+
|
19
24
|
sources:
|
20
25
|
- path: NotificationContent
|
21
26
|
inferDestinationFiltersByPath: true
|
@@ -51,8 +56,13 @@ targets:
|
|
51
56
|
NotificationServiceQ:
|
52
57
|
platform: iOS
|
53
58
|
type: app-extension
|
54
|
-
|
55
|
-
|
59
|
+
|
60
|
+
settings:
|
61
|
+
base:
|
62
|
+
# 1,2,3,4,7 1:iOS 2:macos 3:tvOS 4:watchOS 7:VisionOS
|
63
|
+
TARGETED_DEVICE_FAMILY: 1
|
64
|
+
INFOPLIST_FILE: "InfoFiles/NotificationServiceInfo.plist"
|
65
|
+
|
56
66
|
sources:
|
57
67
|
- path: NotificationService
|
58
68
|
inferDestinationFiltersByPath: true
|
@@ -14,8 +14,13 @@ targets:
|
|
14
14
|
NotificationContent:
|
15
15
|
platform: iOS
|
16
16
|
type: app-extension
|
17
|
-
|
18
|
-
|
17
|
+
|
18
|
+
settings:
|
19
|
+
base:
|
20
|
+
# 1,2,3,4,7 1:iOS 2:macos 3:tvOS 4:watchOS 7:VisionOS
|
21
|
+
TARGETED_DEVICE_FAMILY: 1
|
22
|
+
INFOPLIST_FILE: "InfoFiles/NotificationContentInfo.plist"
|
23
|
+
|
19
24
|
sources:
|
20
25
|
- path: NotificationContent
|
21
26
|
inferDestinationFiltersByPath: true
|
@@ -51,8 +56,13 @@ targets:
|
|
51
56
|
NotificationService:
|
52
57
|
platform: iOS
|
53
58
|
type: app-extension
|
54
|
-
|
55
|
-
|
59
|
+
|
60
|
+
settings:
|
61
|
+
base:
|
62
|
+
# 1,2,3,4,7 1:iOS 2:macos 3:tvOS 4:watchOS 7:VisionOS
|
63
|
+
TARGETED_DEVICE_FAMILY: 1
|
64
|
+
INFOPLIST_FILE: "InfoFiles/NotificationServiceInfo.plist"
|
65
|
+
|
56
66
|
sources:
|
57
67
|
- path: NotificationService
|
58
68
|
inferDestinationFiltersByPath: true
|
@@ -79,4 +89,4 @@ targets:
|
|
79
89
|
echo "Build target: $TARGETNAME"
|
80
90
|
echo "Build Configuration: $CONFIGURATION"
|
81
91
|
echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
|
82
|
-
name: 🔥build configuration
|
92
|
+
name: 🔥build configuration
|
@@ -39,8 +39,8 @@ include:
|
|
39
39
|
- path: config/iOS-target-main-Q.yml
|
40
40
|
relativePaths: false
|
41
41
|
|
42
|
-
- path: config/iOS-target-notification.yml
|
43
|
-
|
42
|
+
# - path: config/iOS-target-notification.yml
|
43
|
+
# relativePaths: false
|
44
44
|
|
45
|
-
- path: config/iOS-target-notification-Q.yml
|
46
|
-
|
45
|
+
# - path: config/iOS-target-notification-Q.yml
|
46
|
+
# relativePaths: false
|
data/podTemplate/example/Podfile
CHANGED
@@ -9,6 +9,11 @@ platform :ios, '9.0'
|
|
9
9
|
|
10
10
|
inhibit_all_warnings!
|
11
11
|
|
12
|
+
|
13
|
+
install! 'cocoapods',
|
14
|
+
disable_input_output_paths: true,
|
15
|
+
generate_multiple_pod_projects: true
|
16
|
+
|
12
17
|
use_frameworks! :linkage => :static # 使用 framework形势的静态库, 注释可变为.a 静态库
|
13
18
|
use_modular_headers! #此字段用于pod自动生成 swift module 伞文件
|
14
19
|
|
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: 3.0.
|
4
|
+
version: 3.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- stephen.chen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jazzy
|
@@ -259,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
259
259
|
- !ruby/object:Gem::Version
|
260
260
|
version: '0'
|
261
261
|
requirements: []
|
262
|
-
rubygems_version: 3.
|
262
|
+
rubygems_version: 3.3.3
|
263
263
|
signing_key:
|
264
264
|
specification_version: 4
|
265
265
|
summary: 一款cocoapods插件,用于创建定制化标准组件.
|