leakferret 0.1.13 → 0.1.14
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/leakferret/binary.rb +5 -5
- data/lib/leakferret/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98c62cebff3d1211eeca1d965e121374d702afce5ecd10f9780894a832149d94
|
|
4
|
+
data.tar.gz: 256fc704331ca3665340f2a91ed67536a08378e0d78d83ce07b945818123233d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faf71368d72c20cfe03dd6e33400e87d2ddae92a9fa299edf7f025fc935b5f1c89fadedaf0a05518c31bbde1094fdc41730fcd0d59ff73d3466d6e6c0f570921
|
|
7
|
+
data.tar.gz: c5b6e8eeed8d89a9f91cc0bb6c5f125b0cbc06e498347ce65035d1d7f36f1a40906efe151794a571974671e3a2e8e25975947aae42931893742b18b634a0daf0
|
data/lib/leakferret/binary.rb
CHANGED
|
@@ -27,11 +27,11 @@ module Leakferret
|
|
|
27
27
|
# exactly which binary bytes it will run. Regenerate on every binary bump
|
|
28
28
|
# from the release's `*.tar.gz.sha256` files.
|
|
29
29
|
CHECKSUMS = {
|
|
30
|
-
'aarch64-apple-darwin' => '
|
|
31
|
-
'aarch64-pc-windows-msvc' => '
|
|
32
|
-
'x86_64-apple-darwin' => '
|
|
33
|
-
'x86_64-pc-windows-msvc' => '
|
|
34
|
-
'x86_64-unknown-linux-gnu' => '
|
|
30
|
+
'aarch64-apple-darwin' => '363b1da65bf34d2c89c37aa2e00eaa03d49c8595cc5b8bb752a344dacf21d7da',
|
|
31
|
+
'aarch64-pc-windows-msvc' => 'b009e852af7eb73dc203e9cb343bec80a1727075d6a35be4ff9567191fd57ca9',
|
|
32
|
+
'x86_64-apple-darwin' => '3af3d7f22a8d127053df123033b0b6777701310733d643406754423d6b1d3912',
|
|
33
|
+
'x86_64-pc-windows-msvc' => '3f038f55cfded63ebc2f8c16c1edbdd1ddcd36ae43a872b91f5aaeed93438fc1',
|
|
34
|
+
'x86_64-unknown-linux-gnu' => 'ba28ac5ef5a44d47f162f3c424c1465da5bbd17fb7292f60d3bd3cf3b2d362a4'
|
|
35
35
|
}.freeze
|
|
36
36
|
|
|
37
37
|
module_function
|
data/lib/leakferret/version.rb
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
module Leakferret
|
|
4
4
|
# The gem's own version (what `gem install leakferret` resolves).
|
|
5
5
|
# @return [String]
|
|
6
|
-
VERSION = '0.1.
|
|
6
|
+
VERSION = '0.1.14'
|
|
7
7
|
|
|
8
8
|
# The native binary release this gem downloads and runs. Tracks the
|
|
9
9
|
# leakferret core release and can move independently of {VERSION}
|
|
10
10
|
# (e.g. a gem-only bugfix keeps the same binary).
|
|
11
11
|
# @return [String]
|
|
12
|
-
BINARY_VERSION = '0.1.
|
|
12
|
+
BINARY_VERSION = '0.1.9'
|
|
13
13
|
end
|