blake3-rb 0.1.0.pre10-x86_64-linux → 1.5.0-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -3
- data/lib/digest/blake3/3.1/blake3_ext.so +0 -0
- data/lib/digest/blake3/3.2/blake3_ext.so +0 -0
- metadata +5 -7
- data/lib/digest/blake3/3.0/blake3_ext.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98617fb49e4b3dd4c8a3c05b48a216fea2ffc9ddb10971c7f769494be5c763a4
|
4
|
+
data.tar.gz: 77611826bb8c2abbd7f92ef37364d265fc45c3462d56be52d806916544870e2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cccabcd6c87e582b93acaf40b486c063149827e7bc5b384b1237cffef314d416ab5c350f06574d8b83fa252070f2babc8cb733d3dc6935fdbedee198ffd34046
|
7
|
+
data.tar.gz: 6759539eb32d0fda3081d3207796d162a8dad98cc3a8aa7ce8b79707e87ffc1c1a37f419f1316f5f5b3609115e41658c982e4a5d3701353833412e9b17a4ba04
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# `blake3-rb`
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/blake3-rb.svg)](https://badge.fury.io/rb/blake3-rb)
|
3
4
|
![Build Status](https://github.com/Shopify/blake3-ruby/workflows/CI/badge.svg)
|
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
|
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.0
|
5
5
|
platform: x86_64-linux
|
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.so
|
25
23
|
- lib/digest/blake3/3.1/blake3_ext.so
|
26
24
|
- lib/digest/blake3/3.2/blake3_ext.so
|
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
|