EXtremeZip 2021.8.24 → 2021.10.10
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/bin/exz +9 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f41b10960a5d7b46c3d80ef672f8c5b276d0ac690916497a24adf638f6bb45d4
|
|
4
|
+
data.tar.gz: dec43ce9c3283826056661e7fe1a7c0a39af00ace9bb2f1bd181453c3e1663f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc76edd3af33ff5fe165f95060ed18d144792b7594e7ced7eac8d874ae35a51ee5ad64a79e6cd320385f422fbfa6aa2e86dd389ddbcd47b456a6451e3cae6d72
|
|
7
|
+
data.tar.gz: 0dbb41578d7046d1d974495f02019fce81976f4285b7ceca7f88a841d90ab825037b2f875abcad16e951149df829926129821146a5f1a62c51975a5b32991487
|
data/bin/exz
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
#!/usr/bin/ruby
|
|
2
2
|
|
|
3
3
|
require 'extremezip.zzaqsv'
|
|
4
|
+
require 'notifier'
|
|
4
5
|
|
|
5
6
|
if ARGV.empty? # 未指定命令行参数。
|
|
6
7
|
else # 指定了命令行参数。
|
|
8
|
+
puts("process id: #{Process.pid}"); # Debug
|
|
9
|
+
|
|
7
10
|
$rootPath = ARGV[0] # 记录要打包的目录树的根目录。
|
|
8
11
|
|
|
9
12
|
exzObject = ExtremeZip.new # 创建压缩对象
|
|
10
13
|
|
|
11
14
|
exzObject.exz($rootPath) # 压缩
|
|
15
|
+
|
|
16
|
+
Notifier.notify(
|
|
17
|
+
image: "image.png",
|
|
18
|
+
title: "exz finished",
|
|
19
|
+
message: $rootPath
|
|
20
|
+
)
|
|
12
21
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: EXtremeZip
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2021.
|
|
4
|
+
version: 2021.10.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hxcan Cai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cod
|
|
@@ -52,6 +52,20 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: 0.4.3
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: notifier
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 0.5.2
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 0.5.2
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: uuid
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|