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.
- checksums.yaml +4 -4
- data/configPodTemplate/example/CommonFiles/.gitkeep +0 -0
- data/configPodTemplate/example/CommonFiles/CommonFile.swift +9 -0
- data/configPodTemplate/example/NotificationContent/Base.lproj/MainInterface.storyboard +43 -0
- data/configPodTemplate/example/NotificationContent/Info.plist +40 -0
- data/configPodTemplate/example/NotificationContent/NotificationViewController.swift +25 -0
- data/configPodTemplate/example/NotificationService/Info.plist +38 -0
- data/configPodTemplate/example/NotificationService/NotificationService.swift +36 -0
- data/configPodTemplate/example/Podfile +53 -0
- data/configPodTemplate/example/READ.md +76 -0
- data/configPodTemplate/example/README_resource/appExtensionNameDiscussion.png +0 -0
- data/configPodTemplate/example/TargetMain/AppDelegate.swift +32 -0
- data/configPodTemplate/example/TargetMain/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- data/configPodTemplate/example/TargetMain/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
- data/configPodTemplate/example/TargetMain/Assets.xcassets/Contents.json +6 -0
- data/configPodTemplate/example/TargetMain/Base.lproj/LaunchScreen.storyboard +45 -0
- data/configPodTemplate/example/TargetMain/Info.plist +47 -0
- data/configPodTemplate/example/TargetMain/ViewController.swift +29 -0
- data/configPodTemplate/example/TargetMain/ViewController.xib +46 -0
- data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.h +16 -0
- data/configPodTemplate/example/TargetMain/YKRPC_POD_NAMEEmptyOC.m +18 -0
- data/configPodTemplate/example/TargetMain/YKRPC_POD_NAME_Example-Bridging-Header.h +4 -0
- data/configPodTemplate/example/config/iOS-config/target-main/Shared.xcconfig +105 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-custom/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/Shared.xcconfig +1 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/Shared.xcconfig +105 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/Shared.xcconfig +1 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/debug.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-main-Q/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/Shared.xcconfig +5 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/Shared.xcconfig +5 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationContent-Q/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/Shared.xcconfig +7 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/Shared.xcconfig +3 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/Shared.xcconfig +7 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/Shared.xcconfig +2 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-custom/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/Shared.xcconfig +3 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/debug.xcconfig +129 -0
- data/configPodTemplate/example/config/iOS-config/target-notificationService-Q/config-enterprise/release.xcconfig +9 -0
- data/configPodTemplate/example/config/iOS-targets-Q.yml +137 -0
- data/configPodTemplate/example/config/iOS-targets.yml +135 -0
- data/configPodTemplate/example/config/project-config/Shared.xcconfig +470 -0
- data/configPodTemplate/example/config/project-config/config-custom/Shared.xcconfig +8 -0
- data/configPodTemplate/example/config/project-config/config-custom/debug.xcconfig +127 -0
- data/configPodTemplate/example/config/project-config/config-custom/release.xcconfig +60 -0
- data/configPodTemplate/example/config/project-config/config-enterprise/Shared.xcconfig +20 -0
- data/configPodTemplate/example/config/project-config/config-enterprise/debug.xcconfig +127 -0
- data/configPodTemplate/example/config/project-config/config-enterprise/release.xcconfig +59 -0
- data/configPodTemplate/example/project.yml +37 -0
- data/configPodTemplate/objc/LICENSE +19 -0
- data/configPodTemplate/objc/README.md +60 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Private/.gitkeep +0 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +16 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +12 -0
- data/configPodTemplate/objc/YKRPC_POD_NAME.podspec +62 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +16 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +27 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +15 -0
- data/configPodTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +27 -0
- data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
- data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +19 -0
- data/configPodTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +20 -0
- data/configPodTemplate/swift/LICENSE +19 -0
- data/configPodTemplate/swift/README.md +60 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME/Assets/Images.xcassets/.gitkeep +0 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME/Private/.gitkeep +0 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +6 -0
- data/configPodTemplate/swift/YKRPC_POD_NAME.podspec +61 -0
- data/lib/cocoapods-ykutility/command/Ykutility.rb +1 -0
- data/lib/cocoapods-ykutility/command/create/yk_create_pod_action.rb +7 -7
- data/lib/cocoapods-ykutility/command/create/yk_exchange_tool.rb +1 -0
- data/lib/cocoapods-ykutility/command/gen/yk_gen_create_action.rb +162 -0
- data/lib/cocoapods-ykutility/command/gen.rb +74 -0
- data/lib/cocoapods-ykutility/gem_version.rb +4 -1
- data/podTemplate/example/Podfile +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/AppDelegate.swift +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/LaunchScreen.storyboard +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/Base.lproj/Main.storyboard +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/SceneDelegate.swift +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example/ViewController.swift +1 -1
- data/podTemplate/example/YKRPC_POD_NAME_Example.xcodeproj/project.pbxproj +1 -1
- data/podTemplate/objc/LICENSE +1 -1
- data/podTemplate/objc/README.md +4 -4
- data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.h +1 -1
- data/podTemplate/objc/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.m +1 -1
- data/podTemplate/objc/YKRPC_POD_NAME.podspec +3 -3
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.h +1 -1
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterRouter.m +1 -1
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.h +1 -1
- data/podTemplate/register/objc/YKRPC_POD_NAME/Private/Register/YKRPC_POD_NAMERegisterService.m +1 -1
- data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterRouter.swift +1 -1
- data/podTemplate/register/swift/YKRPC_POD_NAME/Private/register/YKRPC_POD_NAMERegisterService.swift +1 -1
- data/podTemplate/swift/README.md +4 -4
- data/podTemplate/swift/YKRPC_POD_NAME/Public/YKRPC_POD_NAME.swift +1 -1
- data/podTemplate/swift/YKRPC_POD_NAME.podspec +3 -3
- 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:
|
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:
|
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.
|
256
|
+
rubygems_version: 3.1.6
|
162
257
|
signing_key:
|
163
258
|
specification_version: 4
|
164
259
|
summary: 一款cocoapods插件,用于创建定制化标准组件.
|