cocoapods-ykutility 0.0.18 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/configPodTemplate/example/CommonFiles/.gitkeep +0 -0
  3. data/configPodTemplate/example/CommonFiles/CommonFile.swift +9 -0
  4. data/configPodTemplate/example/NotificationContent/Base.lproj/MainInterface.storyboard +43 -0
  5. data/configPodTemplate/example/NotificationContent/Info.plist +40 -0
  6. data/configPodTemplate/example/NotificationContent/NotificationViewController.swift +25 -0
  7. data/configPodTemplate/example/NotificationService/Info.plist +38 -0
  8. data/configPodTemplate/example/NotificationService/NotificationService.swift +36 -0
  9. data/configPodTemplate/example/Podfile +53 -0
  10. data/configPodTemplate/example/READ.md +76 -0
  11. data/configPodTemplate/example/README_resource/appExtensionNameDiscussion.png +0 -0
  12. data/configPodTemplate/example/TargetMain/AppDelegate.swift +32 -0
  13. data/configPodTemplate/example/TargetMain/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  14. data/configPodTemplate/example/TargetMain/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
  15. data/configPodTemplate/example/TargetMain/Assets.xcassets/Contents.json +6 -0
  16. data/configPodTemplate/example/TargetMain/Base.lproj/LaunchScreen.storyboard +45 -0
  17. data/configPodTemplate/example/TargetMain/Info.plist +47 -0
  18. data/configPodTemplate/example/TargetMain/ViewController.swift +29 -0
  19. data/configPodTemplate/example/TargetMain/ViewController.xib +46 -0
  20. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.h +16 -0
  21. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.m +18 -0
  22. data/configPodTemplate/example/TargetMain/YKRPC_POD_NAME_Example-Bridging-Header.h +4 -0
  23. data/configPodTemplate/example/config/iOS-config/target-main/Shared.xcconfig +105 -0
  24. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/Shared.xcconfig +2 -0
  25. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/debug.xcconfig +9 -0
  26. data/configPodTemplate/example/config/iOS-config/target-main/config-custom/release.xcconfig +9 -0
  27. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/Shared.xcconfig +1 -0
  28. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/debug.xcconfig +9 -0
  29. data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/release.xcconfig +9 -0
  30. data/configPodTemplate/example/config/iOS-config/target-main-Q/Shared.xcconfig +105 -0
  31. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/Shared.xcconfig +2 -0
  32. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/debug.xcconfig +9 -0
  33. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/release.xcconfig +9 -0
  34. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/Shared.xcconfig +1 -0
  35. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig +9 -0
  36. data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/release.xcconfig +9 -0
  37. data/configPodTemplate/example/config/iOS-config/target-notificationContent/Shared.xcconfig +5 -0
  38. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/Shared.xcconfig +2 -0
  39. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/debug.xcconfig +129 -0
  40. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/release.xcconfig +9 -0
  41. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/Shared.xcconfig +2 -0
  42. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig +129 -0
  43. data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig +9 -0
  44. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/Shared.xcconfig +5 -0
  45. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/Shared.xcconfig +2 -0
  46. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig +129 -0
  47. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig +9 -0
  48. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/Shared.xcconfig +2 -0
  49. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig +129 -0
  50. data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig +9 -0
  51. data/configPodTemplate/example/config/iOS-config/target-notificationService/Shared.xcconfig +7 -0
  52. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/Shared.xcconfig +2 -0
  53. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/debug.xcconfig +129 -0
  54. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/release.xcconfig +9 -0
  55. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig +3 -0
  56. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig +129 -0
  57. data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig +9 -0
  58. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/Shared.xcconfig +7 -0
  59. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/Shared.xcconfig +2 -0
  60. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig +129 -0
  61. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig +9 -0
  62. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/Shared.xcconfig +3 -0
  63. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig +129 -0
  64. data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig +9 -0
  65. data/configPodTemplate/example/config/iOS-targets-Q.yml +137 -0
  66. data/configPodTemplate/example/config/iOS-targets.yml +135 -0
  67. data/configPodTemplate/example/config/project-config/Shared.xcconfig +470 -0
  68. data/configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig +8 -0
  69. data/configPodTemplate/example/config/project-config/config-custom/debug.xcconfig +127 -0
  70. data/configPodTemplate/example/config/project-config/config-custom/release.xcconfig +60 -0
  71. data/configPodTemplate/example/config/project-config/config-enterprise/Shared.xcconfig +20 -0
  72. data/configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig +127 -0
  73. data/configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig +59 -0
  74. data/configPodTemplate/example/project.yml +37 -0
  75. data/configPodTemplate/objc/LICENSE +19 -0
  76. data/configPodTemplate/objc/README.md +60 -0
  77. data/configPodTemplate/objc/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
  78. data/configPodTemplate/objc/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  79. data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +16 -0
  80. data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +12 -0
  81. data/configPodTemplate/objc/YKRPC_POD_NAME.podspec +62 -0
  82. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +16 -0
  83. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +27 -0
  84. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +15 -0
  85. data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +27 -0
  86. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  87. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +19 -0
  88. data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +20 -0
  89. data/configPodTemplate/swift/LICENSE +19 -0
  90. data/configPodTemplate/swift/README.md +60 -0
  91. data/configPodTemplate/swift/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
  92. data/configPodTemplate/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
  93. data/configPodTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +6 -0
  94. data/configPodTemplate/swift/YKRPC_POD_NAME.podspec +61 -0
  95. data/lib/cocoapods-ykutility/command/Ykutility.rb +1 -0
  96. data/lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb +7 -7
  97. data/lib/cocoapods-ykutility/command/create/yk_exchange_tool.rb +1 -0
  98. data/lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb +162 -0
  99. data/lib/cocoapods-ykutility/command/gen.rb +74 -0
  100. data/lib/cocoapods-ykutility/gem_version.rb +4 -1
  101. data/podTemplate/example/Podfile +1 -1
  102. data/podTemplate/example/YKRPC_POD_NAME_Example/AppDelegate.swift +1 -1
  103. data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/LaunchScreen.storyboard +1 -1
  104. data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/Main.storyboard +1 -1
  105. data/podTemplate/example/YKRPC_POD_NAME_Example/SceneDelegate.swift +1 -1
  106. data/podTemplate/example/YKRPC_POD_NAME_Example/ViewController.swift +1 -1
  107. data/podTemplate/example/YKRPC_POD_NAME_Example.xcodeproj/project.pbxproj +1 -1
  108. data/podTemplate/objc/LICENSE +1 -1
  109. data/podTemplate/objc/README.md +4 -4
  110. data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +1 -1
  111. data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +1 -1
  112. data/podTemplate/objc/YKRPC_POD_NAME.podspec +3 -3
  113. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +1 -1
  114. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +1 -1
  115. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +1 -1
  116. data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +1 -1
  117. data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +1 -1
  118. data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +1 -1
  119. data/podTemplate/swift/README.md +4 -4
  120. data/podTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +1 -1
  121. data/podTemplate/swift/YKRPC_POD_NAME.podspec +3 -3
  122. metadata +98 -3
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: 0.0.18
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - stephen.chen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-22 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jazzy
@@ -87,6 +87,99 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - configPodTemplate/example/CommonFiles/.gitkeep
91
+ - configPodTemplate/example/CommonFiles/CommonFile.swift
92
+ - configPodTemplate/example/NotificationContent/Base.lproj/MainInterface.storyboard
93
+ - configPodTemplate/example/NotificationContent/Info.plist
94
+ - configPodTemplate/example/NotificationContent/NotificationViewController.swift
95
+ - configPodTemplate/example/NotificationService/Info.plist
96
+ - configPodTemplate/example/NotificationService/NotificationService.swift
97
+ - configPodTemplate/example/Podfile
98
+ - configPodTemplate/example/READ.md
99
+ - configPodTemplate/example/README_resource/appExtensionNameDiscussion.png
100
+ - configPodTemplate/example/TargetMain/AppDelegate.swift
101
+ - configPodTemplate/example/TargetMain/Assets.xcassets/AccentColor.colorset/Contents.json
102
+ - configPodTemplate/example/TargetMain/Assets.xcassets/AppIcon.appiconset/Contents.json
103
+ - configPodTemplate/example/TargetMain/Assets.xcassets/Contents.json
104
+ - configPodTemplate/example/TargetMain/Base.lproj/LaunchScreen.storyboard
105
+ - configPodTemplate/example/TargetMain/Info.plist
106
+ - configPodTemplate/example/TargetMain/ViewController.swift
107
+ - configPodTemplate/example/TargetMain/ViewController.xib
108
+ - configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.h
109
+ - configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.m
110
+ - configPodTemplate/example/TargetMain/YKRPC_POD_NAME_Example-Bridging-Header.h
111
+ - configPodTemplate/example/config/iOS-config/target-main-Q/Shared.xcconfig
112
+ - configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/Shared.xcconfig
113
+ - configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/debug.xcconfig
114
+ - configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/release.xcconfig
115
+ - configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/Shared.xcconfig
116
+ - configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig
117
+ - configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/release.xcconfig
118
+ - configPodTemplate/example/config/iOS-config/target-main/Shared.xcconfig
119
+ - configPodTemplate/example/config/iOS-config/target-main/config-custom/Shared.xcconfig
120
+ - configPodTemplate/example/config/iOS-config/target-main/config-custom/debug.xcconfig
121
+ - configPodTemplate/example/config/iOS-config/target-main/config-custom/release.xcconfig
122
+ - configPodTemplate/example/config/iOS-config/target-main/config-enterprise/Shared.xcconfig
123
+ - configPodTemplate/example/config/iOS-config/target-main/config-enterprise/debug.xcconfig
124
+ - configPodTemplate/example/config/iOS-config/target-main/config-enterprise/release.xcconfig
125
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/Shared.xcconfig
126
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/Shared.xcconfig
127
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig
128
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig
129
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/Shared.xcconfig
130
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig
131
+ - configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig
132
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/Shared.xcconfig
133
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/Shared.xcconfig
134
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/debug.xcconfig
135
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/release.xcconfig
136
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/Shared.xcconfig
137
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig
138
+ - configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig
139
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/Shared.xcconfig
140
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/Shared.xcconfig
141
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig
142
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig
143
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/Shared.xcconfig
144
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig
145
+ - configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig
146
+ - configPodTemplate/example/config/iOS-config/target-notificationService/Shared.xcconfig
147
+ - configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/Shared.xcconfig
148
+ - configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/debug.xcconfig
149
+ - configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/release.xcconfig
150
+ - configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig
151
+ - configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig
152
+ - configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig
153
+ - configPodTemplate/example/config/iOS-targets-Q.yml
154
+ - configPodTemplate/example/config/iOS-targets.yml
155
+ - configPodTemplate/example/config/project-config/Shared.xcconfig
156
+ - configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig
157
+ - configPodTemplate/example/config/project-config/config-custom/debug.xcconfig
158
+ - configPodTemplate/example/config/project-config/config-custom/release.xcconfig
159
+ - configPodTemplate/example/config/project-config/config-enterprise/Shared.xcconfig
160
+ - configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig
161
+ - configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig
162
+ - configPodTemplate/example/project.yml
163
+ - configPodTemplate/objc/LICENSE
164
+ - configPodTemplate/objc/README.md
165
+ - configPodTemplate/objc/YKRPC_POD_NAME.podspec
166
+ - configPodTemplate/objc/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep
167
+ - configPodTemplate/objc/YKRPC_POD_NAME/Private/.gitkeep
168
+ - configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h
169
+ - configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m
170
+ - configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h
171
+ - configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m
172
+ - configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h
173
+ - configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m
174
+ - configPodTemplate/register/swift/YKRPC_POD_NAME/Private/.gitkeep
175
+ - configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift
176
+ - configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift
177
+ - configPodTemplate/swift/LICENSE
178
+ - configPodTemplate/swift/README.md
179
+ - configPodTemplate/swift/YKRPC_POD_NAME.podspec
180
+ - configPodTemplate/swift/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep
181
+ - configPodTemplate/swift/YKRPC_POD_NAME/Private/.gitkeep
182
+ - configPodTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift
90
183
  - lib/cocoapods-ykutility.rb
91
184
  - lib/cocoapods-ykutility/command.rb
92
185
  - lib/cocoapods-ykutility/command/Ykutility.rb
@@ -94,6 +187,8 @@ files:
94
187
  - lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb
95
188
  - lib/cocoapods-ykutility/command/create/yk_create_pod_config.rb
96
189
  - lib/cocoapods-ykutility/command/create/yk_exchange_tool.rb
190
+ - lib/cocoapods-ykutility/command/gen.rb
191
+ - lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb
97
192
  - lib/cocoapods-ykutility/command/push.rb
98
193
  - lib/cocoapods-ykutility/command/push/yk_api_analysis.rb
99
194
  - lib/cocoapods-ykutility/command/push/yk_api_parse.rb
@@ -158,7 +253,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
253
  - !ruby/object:Gem::Version
159
254
  version: '0'
160
255
  requirements: []
161
- rubygems_version: 3.4.10
256
+ rubygems_version: 3.1.6
162
257
  signing_key:
163
258
  specification_version: 4
164
259
  summary: 一款cocoapods插件,用于创建定制化标准组件.