blake3-rb 0.1.0.pre10-x86_64-linux-musl → 1.5.0-x86_64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b32a6cfa6a3fe9b8ed3483275aad417daf68b7330e50969dfe0f9116a1231fb
4
- data.tar.gz: 31fb097b844bf1da058cdb33fae56764513c1e09faa833ea10c9cf48693294e1
3
+ metadata.gz: 5534e4eaf7c2f87d6f052d47542ea4dde68ea67a95c2ea9433b5b2b0f3aaa300
4
+ data.tar.gz: f6c14d0b528b6e19aa22ba2442cbb0d011f18a0a7ebc615c267d3ee3d465a4fb
5
5
  SHA512:
6
- metadata.gz: '088546167e96c30289935b9f37cb9ebfeffce783edbe633847d6af9f98edaea43e886ae44e1e58c99b927190093d93bde5162ba6a8364f75756e044ba3efd7cd'
7
- data.tar.gz: bbea8deb8a6011cb61b1c607d2777128812411dae02ef6856c9a56f50ec398efdebed8a25dce9ae3b7b7f27c35d78160fa60e21848e64252b65cf47b70580d78
6
+ metadata.gz: 34da04b200b6e1c6262c630657bb3a686fc1d174806023c7ae969dbb1ee83f1d4cc40e9d751e57593b2297013b2719c238fa9602247422c4ba284f22ebabc557
7
+ data.tar.gz: 91f9b061fa712e3cc49cc0e4ab36a33c416dfeab6859c843472e63c994a794c5af94efadb866bed599bf1a81cf84552730cacf3b5c7860e35f7628d683e36454
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", github: "Shopify/blake3-rb"
13
+ gem "blake3-rb"
13
14
  ```
14
15
 
15
- And then execute:
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
- $ bundle install
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: 0.1.0.pre10
4
+ version: 1.5.0
5
5
  platform: x86_64-linux-musl
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.0'
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: 1.3.1
48
+ version: '0'
51
49
  requirements: []
52
50
  rubygems_version: 3.4.4
53
51
  signing_key:
Binary file