cocoapods-ykutility 2.0.3 → 2.0.5

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: 1263c27bfc794451db4c0479d89b49f4ec8397e0bbff5f4c05f29566fb898c8c
4
- data.tar.gz: 19d3426ac5f347149840c29c0c2b7bfd9f3862c0b2c95f0facbd98bbc7e75544
3
+ metadata.gz: 46486e96351d777a8f3d9bdf806fbfaebe1e8a5a4913743b2fc4a61a7b80f553
4
+ data.tar.gz: e8909430d451bb8ded521ed126bd338338258d9e05740ef1d04a391d945079b9
5
5
  SHA512:
6
- metadata.gz: 367d9129c599ac9b6356a617f9633c4e2e1077a64326b75c6a80ff0028e46c4936ddfec8dcc197de250eb0070e1e0d197fa9919d6ac96e42bbf0043c2dca815f
7
- data.tar.gz: 99b84dccb596e46cedd299a86e8d9aed648ba254ae89c55dd31afeb4aa1959e945acdb1ddf261af020543a2543c71765820682497b1bc68a621c0eceaff3cf33
6
+ metadata.gz: feac49ab2eceac554d56242a7f72ae83286304ac12583824609bb127532fad7eabda2df5c086ca214bee98e14819f8d99d98b266b1c49ea1a45d3869747012ba
7
+ data.tar.gz: a0ac7d635a79b926f27b1e5bfa8f8543f17c211af4054292c4d34339a931824b422d95346491ad8696e465d204e943a079ffd822601541a19b18894d397d3c0e
@@ -20,7 +20,7 @@ def st_installLocalPods(dir, arr)
20
20
  end
21
21
 
22
22
  def pod_develop
23
- dir = '../'
23
+ dir = '../../'
24
24
  arr = [
25
25
  'YKRPC_POD_NAME'
26
26
  ]
@@ -39,18 +39,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
39
39
  // keychain within your keychain path. A missing or invalid certificate will cause a
40
40
  // build error.
41
41
 
42
-
43
- // Info.plist File
44
- //
45
- // The project-relative path to the property list file that contains the `Info.plist`
46
- // information used by bundles. For details on information property list files, see
47
- // [Information Property
48
- // List](https://developer.apple.com/documentation/bundleresources/information_property_list).
49
-
50
- INFOPLIST_FILE = YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Info.plist
51
-
52
-
53
-
54
42
  // Runpath Search Paths
55
43
  //
56
44
  // This is a list of paths to be added to the `runpath` search path list for the image
@@ -40,16 +40,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
40
40
  // build error.
41
41
 
42
42
 
43
- // Info.plist File
44
- //
45
- // The project-relative path to the property list file that contains the `Info.plist`
46
- // information used by bundles. For details on information property list files, see
47
- // [Information Property
48
- // List](https://developer.apple.com/documentation/bundleresources/information_property_list).
49
-
50
- INFOPLIST_FILE = YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Info.plist
51
-
52
-
53
43
 
54
44
  // Runpath Search Paths
55
45
  //
@@ -0,0 +1,76 @@
1
+ ############
2
+ # Targets
3
+ ############
4
+
5
+ targets:
6
+
7
+ # -----------
8
+ # MyApp_iOS
9
+ # -----------
10
+
11
+ YKRPC_POD_NAME_ExampleQ:
12
+ type: application
13
+ platform: iOS
14
+ info:
15
+ path: $SRCROOT/TargetMain/Info.plist
16
+
17
+ # sources
18
+ sources:
19
+ # - YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Common
20
+ # - YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Info.plist
21
+ - TargetMain
22
+ - CommonFiles
23
+
24
+ # Config Files
25
+ configFiles:
26
+ Debug: config/iOS-config/target-main-Q/config-custom/debug.xcconfig
27
+ Release: config/iOS-config/target-main-Q/config-custom/release.xcconfig
28
+ DebugQ: config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig
29
+ ReleaseQ: config/iOS-config/target-main-Q/config-enterprise/release.xcconfig
30
+
31
+ # dependencies
32
+ dependencies:
33
+ - target: NotificationContentQ
34
+ - target: NotificationServiceQ
35
+ # - carthage: Reusable
36
+ # - package: SwiftyUtils
37
+ # - sdk: CloudKit.framework
38
+
39
+ # scripts
40
+ preBuildScripts:
41
+ # show build configuration
42
+ - script: |
43
+ # Build Configuration
44
+ echo "Build target: $TARGETNAME"
45
+ echo "Build Configuration: $CONFIGURATION"
46
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
47
+ name: 🔥build configuration
48
+
49
+ schemes:
50
+ YKRPC_POD_NAME_ExampleQ:
51
+ build:
52
+ targets:
53
+ YKRPC_POD_NAME_ExampleQ: [ build, analyze, profile, archive ]
54
+ config: DebugQ
55
+ parallelizeBuild: true
56
+ buildImplicitDependencies: true
57
+
58
+ test:
59
+ config: DebugQ
60
+
61
+ run:
62
+ config: DebugQ
63
+
64
+ profile:
65
+ config: ReleaseQ
66
+
67
+ analyze:
68
+ config: DebugQ
69
+
70
+ archive:
71
+ config: ReleaseQ
72
+ customArchiveName: YKRPC_POD_NAME_ExampleQ
73
+ revealArchiveInOrganizer: false
74
+ management:
75
+ share: true
76
+
@@ -0,0 +1,74 @@
1
+ ############
2
+ # Targets
3
+ ############
4
+
5
+ targets:
6
+
7
+ # -----------
8
+ # MyApp_iOS
9
+ # -----------
10
+
11
+ YKRPC_POD_NAME_Example:
12
+ type: application
13
+ platform: iOS
14
+ info:
15
+ path: $SRCROOT/TargetMain/Info.plist
16
+
17
+ # sources
18
+ sources:
19
+ - TargetMain
20
+ - CommonFiles
21
+
22
+ # Config Files
23
+ configFiles:
24
+ Debug: config/iOS-config/target-main/config-custom/debug.xcconfig
25
+ Release: config/iOS-config/target-main/config-custom/release.xcconfig
26
+ DebugQ: config/iOS-config/target-main/config-enterprise/debug.xcconfig
27
+ ReleaseQ: config/iOS-config/target-main/config-enterprise/release.xcconfig
28
+
29
+ # dependencies
30
+ dependencies:
31
+ - target: NotificationContent
32
+ - target: NotificationService
33
+ # - carthage: Reusable
34
+ # - package: SwiftyUtils
35
+ # - sdk: CloudKit.framework
36
+
37
+ # scripts
38
+ preBuildScripts:
39
+ # show build configuration
40
+ - script: |
41
+ # Build Configuration
42
+ echo "Build target: $TARGETNAME"
43
+ echo "Build Configuration: $CONFIGURATION"
44
+ echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
45
+ name: 🔥build configuration
46
+
47
+ schemes:
48
+ YKRPC_POD_NAME_Example:
49
+ build:
50
+ targets:
51
+ YKRPC_POD_NAME_Example: [ build, analyze, profile, archive ]
52
+ config: Debug
53
+ parallelizeBuild: true
54
+ buildImplicitDependencies: true
55
+
56
+ test:
57
+ config: Debug
58
+
59
+ run:
60
+ config: Debug
61
+
62
+ profile:
63
+ config: Release
64
+
65
+ analyze:
66
+ config: Debug
67
+
68
+ archive:
69
+ config: Release
70
+ customArchiveName: YKRPC_POD_NAME_Example
71
+ revealArchiveInOrganizer: false
72
+ management:
73
+ share: true
74
+
@@ -8,48 +8,14 @@ targets:
8
8
  # MyApp_iOS
9
9
  # -----------
10
10
 
11
- YKRPC_POD_NAME_ExampleQ:
12
- type: application
13
- platform: iOS
14
-
15
- # sources
16
- sources:
17
- # - YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Common
18
- # - YKRPC_POD_NAME_Example/YKRPC_POD_NAME_Example/Info.plist
19
- - TargetMain
20
- - CommonFiles
21
-
22
- # Config Files
23
- configFiles:
24
- Debug: config/iOS-config/target-main-Q/config-custom/debug.xcconfig
25
- Release: config/iOS-config/target-main-Q/config-custom/release.xcconfig
26
- DebugQ: config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig
27
- ReleaseQ: config/iOS-config/target-main-Q/config-enterprise/release.xcconfig
28
-
29
- # dependencies
30
- dependencies:
31
- - target: NotificationContentQ
32
- - target: NotificationServiceQ
33
- # - carthage: Reusable
34
- # - package: SwiftyUtils
35
- # - sdk: CloudKit.framework
36
-
37
- # scripts
38
- preBuildScripts:
39
- # show build configuration
40
- - script: |
41
- # Build Configuration
42
- echo "Build target: $TARGETNAME"
43
- echo "Build Configuration: $CONFIGURATION"
44
- echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
45
- name: 🔥build configuration
46
-
47
11
  # -----------
48
12
  # NotificationContentQ
49
13
  # -----------
50
14
  NotificationContentQ:
51
15
  platform: iOS
52
16
  type: app-extension
17
+ info:
18
+ path: $SRCROOT/NotificationContent/Info.plist
53
19
  sources:
54
20
  - NotificationContent
55
21
  - CommonFiles
@@ -82,6 +48,8 @@ targets:
82
48
  NotificationServiceQ:
83
49
  platform: iOS
84
50
  type: app-extension
51
+ info:
52
+ path: $SRCROOT/NotificationService/Info.plist
85
53
  sources:
86
54
  - NotificationService
87
55
  - CommonFiles
@@ -106,32 +74,3 @@ targets:
106
74
  echo "Build Configuration: $CONFIGURATION"
107
75
  echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
108
76
  name: 🔥build configuration
109
-
110
- schemes:
111
- YKRPC_POD_NAME_ExampleQ:
112
- build:
113
- targets:
114
- YKRPC_POD_NAME_ExampleQ: [ build, analyze, profile, archive ]
115
- config: DebugQ
116
- parallelizeBuild: true
117
- buildImplicitDependencies: true
118
-
119
- test:
120
- config: DebugQ
121
-
122
- run:
123
- config: DebugQ
124
-
125
- profile:
126
- config: ReleaseQ
127
-
128
- analyze:
129
- config: DebugQ
130
-
131
- archive:
132
- config: ReleaseQ
133
- customArchiveName: YKRPC_POD_NAME_ExampleQ
134
- revealArchiveInOrganizer: false
135
- management:
136
- share: true
137
-
@@ -8,46 +8,14 @@ targets:
8
8
  # MyApp_iOS
9
9
  # -----------
10
10
 
11
- YKRPC_POD_NAME_Example:
12
- type: application
13
- platform: iOS
14
-
15
- # sources
16
- sources:
17
- - TargetMain
18
- - CommonFiles
19
-
20
- # Config Files
21
- configFiles:
22
- Debug: config/iOS-config/target-main/config-custom/debug.xcconfig
23
- Release: config/iOS-config/target-main/config-custom/release.xcconfig
24
- DebugQ: config/iOS-config/target-main/config-enterprise/debug.xcconfig
25
- ReleaseQ: config/iOS-config/target-main/config-enterprise/release.xcconfig
26
-
27
- # dependencies
28
- dependencies:
29
- - target: NotificationContent
30
- - target: NotificationService
31
- # - carthage: Reusable
32
- # - package: SwiftyUtils
33
- # - sdk: CloudKit.framework
34
-
35
- # scripts
36
- preBuildScripts:
37
- # show build configuration
38
- - script: |
39
- # Build Configuration
40
- echo "Build target: $TARGETNAME"
41
- echo "Build Configuration: $CONFIGURATION"
42
- echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
43
- name: 🔥build configuration
44
-
45
11
  # -----------
46
12
  # NotificationContent
47
13
  # -----------
48
14
  NotificationContent:
49
15
  platform: iOS
50
16
  type: app-extension
17
+ info:
18
+ path: $SRCROOT/NotificationContent/Info.plist
51
19
  sources:
52
20
  - NotificationContent
53
21
  - CommonFiles
@@ -80,6 +48,8 @@ targets:
80
48
  NotificationService:
81
49
  platform: iOS
82
50
  type: app-extension
51
+ info:
52
+ path: $SRCROOT/NotificationService/Info.plist
83
53
  sources:
84
54
  - NotificationService
85
55
  - CommonFiles
@@ -103,33 +73,4 @@ targets:
103
73
  echo "Build target: $TARGETNAME"
104
74
  echo "Build Configuration: $CONFIGURATION"
105
75
  echo "GCC_PREPROCESSOR_DEFINITIONS: $GCC_PREPROCESSOR_DEFINITIONS"
106
- name: 🔥build configuration
107
-
108
- schemes:
109
- YKRPC_POD_NAME_Example:
110
- build:
111
- targets:
112
- YKRPC_POD_NAME_Example: [ build, analyze, profile, archive ]
113
- config: Debug
114
- parallelizeBuild: true
115
- buildImplicitDependencies: true
116
-
117
- test:
118
- config: Debug
119
-
120
- run:
121
- config: Debug
122
-
123
- profile:
124
- config: Release
125
-
126
- analyze:
127
- config: Debug
128
-
129
- archive:
130
- config: Release
131
- customArchiveName: YKRPC_POD_NAME_Example
132
- revealArchiveInOrganizer: false
133
- management:
134
- share: true
135
-
76
+ name: 🔥build configuration
@@ -30,8 +30,14 @@ configFiles:
30
30
  ReleaseQ: config/project-config/config-enterprise/release.xcconfig
31
31
 
32
32
  include:
33
- - path: config/iOS-targets.yml
33
+ - path: config/iOS-target-main.yml
34
34
  relativePaths: false
35
35
 
36
- - path: config/iOS-targets-Q.yml
36
+ - path: config/iOS-target-main-Q.yml
37
37
  relativePaths: false
38
+
39
+ - path: config/iOS-target-notification.yml
40
+ relativePaths: false
41
+
42
+ - path: config/iOS-target-notification-Q.yml
43
+ relativePaths: false
@@ -1,5 +1,5 @@
1
1
  module CocoapodsYkPodUtility
2
- VERSION = '2.0.3'
2
+ VERSION = '2.0.5'
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
 
@@ -19,7 +19,7 @@ def st_installLocalPods(dir, arr)
19
19
  end
20
20
 
21
21
  def pod_develop
22
- dir = '../'
22
+ dir = '../../'
23
23
  arr = [
24
24
  'YKRPC_POD_NAME'
25
25
  ]
@@ -3,4 +3,5 @@
3
3
  // Pod
4
4
  //
5
5
  // Created by YKRPC_AUTHOR_NAME on YKRPC_CREATE_DATE.
6
- //
6
+ //
7
+ // @_exported import XXXXXX //这个是为了对外暴露下层依赖的Pod
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.3
4
+ version: 2.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: 2024-01-27 00:00:00.000000000 Z
11
+ date: 2024-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jazzy
@@ -152,8 +152,10 @@ files:
152
152
  - configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig
153
153
  - configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig
154
154
  - configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig
155
- - configPodTemplate/example/config/iOS-targets-Q.yml
156
- - configPodTemplate/example/config/iOS-targets.yml
155
+ - configPodTemplate/example/config/iOS-target-main-Q.yml
156
+ - configPodTemplate/example/config/iOS-target-main.yml
157
+ - configPodTemplate/example/config/iOS-target-notification-Q.yml
158
+ - configPodTemplate/example/config/iOS-target-notification.yml
157
159
  - configPodTemplate/example/config/project-config/Shared.xcconfig
158
160
  - configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig
159
161
  - configPodTemplate/example/config/project-config/config-custom/debug.xcconfig