lhj-tools 0.1.1 → 0.1.2
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/lib/lhj/command/head_import.rb +128 -0
- data/lib/lhj/command/init.rb +27 -0
- data/lib/lhj/command/local/fetch.rb +152 -0
- data/lib/lhj/command/local/filter.rb +82 -0
- data/lib/lhj/command/local/local.rb +264 -0
- data/lib/lhj/command/local/local_upload.rb +44 -0
- data/lib/lhj/command/local/micro_service.rb +87 -0
- data/lib/lhj/command/oss/del.rb +36 -0
- data/lib/lhj/command/oss/list.rb +17 -0
- data/lib/lhj/command/oss/upload.rb +58 -0
- data/lib/lhj/command/refactor_rename.rb +77 -0
- data/lib/lhj/command/rename_image.rb +1 -1
- data/lib/lhj/command/reverse_import.rb +74 -0
- data/lib/lhj/command/template.rb +21 -0
- data/lib/lhj/command/trans.rb +47 -6
- data/lib/lhj/command.rb +11 -0
- data/lib/lhj/helper/local_config.rb +40 -0
- data/lib/lhj/helper/oss_config.rb +32 -0
- data/lib/lhj/helper/oss_helper.rb +43 -0
- data/lib/lhj/helper/trans_helper.rb +49 -0
- data/lib/lhj/tools/version.rb +1 -1
- metadata +33 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lhj-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lihaijian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: claide
|
@@ -90,6 +90,20 @@ dependencies:
|
|
90
90
|
- - "<"
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 4.0.0
|
93
|
+
- !ruby/object:Gem::Dependency
|
94
|
+
name: aliyun-sdk
|
95
|
+
requirement: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 0.8.0
|
100
|
+
type: :runtime
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - "~>"
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 0.8.0
|
93
107
|
- !ruby/object:Gem::Dependency
|
94
108
|
name: faraday-cookie_jar
|
95
109
|
requirement: !ruby/object:Gem::Requirement
|
@@ -191,11 +205,28 @@ files:
|
|
191
205
|
- README.md
|
192
206
|
- bin/lhj
|
193
207
|
- lib/lhj/command.rb
|
208
|
+
- lib/lhj/command/head_import.rb
|
209
|
+
- lib/lhj/command/init.rb
|
210
|
+
- lib/lhj/command/local/fetch.rb
|
211
|
+
- lib/lhj/command/local/filter.rb
|
212
|
+
- lib/lhj/command/local/local.rb
|
213
|
+
- lib/lhj/command/local/local_upload.rb
|
214
|
+
- lib/lhj/command/local/micro_service.rb
|
215
|
+
- lib/lhj/command/oss/del.rb
|
216
|
+
- lib/lhj/command/oss/list.rb
|
217
|
+
- lib/lhj/command/oss/upload.rb
|
218
|
+
- lib/lhj/command/refactor_rename.rb
|
194
219
|
- lib/lhj/command/rename_image.rb
|
220
|
+
- lib/lhj/command/reverse_import.rb
|
221
|
+
- lib/lhj/command/template.rb
|
195
222
|
- lib/lhj/command/trans.rb
|
196
223
|
- lib/lhj/command/view.rb
|
197
224
|
- lib/lhj/command/yapi.rb
|
198
225
|
- lib/lhj/config.rb
|
226
|
+
- lib/lhj/helper/local_config.rb
|
227
|
+
- lib/lhj/helper/oss_config.rb
|
228
|
+
- lib/lhj/helper/oss_helper.rb
|
229
|
+
- lib/lhj/helper/trans_helper.rb
|
199
230
|
- lib/lhj/tools.rb
|
200
231
|
- lib/lhj/tools/version.rb
|
201
232
|
homepage:
|