blake3-rb 0.1.0.pre10-arm64-darwin → 1.5.3-arm64-darwin
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b914321d83a1ce8448fd007d2990ae9b0e2e3d0c002f91852c054537192832c
|
4
|
+
data.tar.gz: 6ba3f6f0dfc3ec15c14b8b5c675758293e3af96f2dca4e48f5aaa70d59aa8453
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85300ff3b448639c8bde531f562866ea8ff073311218872823e2f2fc8bc8a5fd277ad8b288d1c97563ff8111ffcba875d14210cdf5270ca1bfe4ee3c1b33bccb
|
7
|
+
data.tar.gz: e476f52b5bef8d5ae80f894e3d4fda5ec13034da6b8e659ecee9adef9880167af33b75413f9fb44bde5dc6e8818e0167156be10bbc7fea8f9d2ab25e7e03004d
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# `blake3-rb`
|
2
2
|
|
3
|
+
[](https://badge.fury.io/rb/blake3-rb)
|
3
4
|

|
4
5
|
|
5
6
|
Blake3 is a Ruby gem that provides a simple and efficient way to compute the Blake3 cryptographic hash function. This gem is designed to be easy to use and integrate into your Ruby projects using the Ruby [`digest` framework](https://github.com/ruby/digest).
|
@@ -9,13 +10,14 @@ Blake3 is a Ruby gem that provides a simple and efficient way to compute the Bla
|
|
9
10
|
Add this line to your application's Gemfile:
|
10
11
|
|
11
12
|
```ruby
|
12
|
-
gem "blake3-rb"
|
13
|
+
gem "blake3-rb"
|
13
14
|
```
|
14
15
|
|
15
|
-
|
16
|
+
We provide pre-built binaries most common platforms. This is the preferred way to install this gem since it will be faster and more reliable than compiling from source. Make sure Bundler is configured to use the pre-built binaries by running:
|
16
17
|
|
17
18
|
```bash
|
18
|
-
|
19
|
+
bundle lock --add-platform x86_64-linux
|
20
|
+
bundle install # resolve dependencies for platform-specific gems
|
19
21
|
```
|
20
22
|
|
21
23
|
## Usage
|
Binary file
|
Binary file
|
data/lib/digest/blake3.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blake3-rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.5.3
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Ian Ker-Seymer
|
@@ -11,8 +11,7 @@ cert_chain: []
|
|
11
11
|
date: 2023-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Provides native bindings to the Blake3 hash function for Ruby.
|
14
|
-
email:
|
15
|
-
- ian.kerseymer@shopify.com
|
14
|
+
email:
|
16
15
|
executables: []
|
17
16
|
extensions: []
|
18
17
|
extra_rdoc_files: []
|
@@ -21,7 +20,6 @@ files:
|
|
21
20
|
- README.md
|
22
21
|
- lib/blake3-rb.rb
|
23
22
|
- lib/digest/blake3.rb
|
24
|
-
- lib/digest/blake3/3.0/blake3_ext.bundle
|
25
23
|
- lib/digest/blake3/3.1/blake3_ext.bundle
|
26
24
|
- lib/digest/blake3/3.2/blake3_ext.bundle
|
27
25
|
homepage: https://github.com/Shopify/blake3-ruby
|
@@ -39,15 +37,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
39
37
|
requirements:
|
40
38
|
- - ">="
|
41
39
|
- !ruby/object:Gem::Version
|
42
|
-
version: '3.
|
40
|
+
version: '3.1'
|
43
41
|
- - "<"
|
44
42
|
- !ruby/object:Gem::Version
|
45
43
|
version: 3.3.dev
|
46
44
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
45
|
requirements:
|
48
|
-
- - "
|
46
|
+
- - ">="
|
49
47
|
- !ruby/object:Gem::Version
|
50
|
-
version:
|
48
|
+
version: '0'
|
51
49
|
requirements: []
|
52
50
|
rubygems_version: 3.4.4
|
53
51
|
signing_key:
|
Binary file
|