tigerbeetle 0.0.16 → 0.0.17
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/CHANGELOG.md +4 -0
- data/README.md +6 -0
- data/ext/tb_client/pkg.tar.gz +0 -0
- data/lib/tigerbeetle/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1424ea6779e1dd5caa6139ed57e51e4b4cfea91f68e74b39b047dd01ee3d131f
|
4
|
+
data.tar.gz: e01edc5ee477ff093684b07c940005e6d863d2acda4e102471bd1c1a37163001
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 197e95ae6fe34cb24d23646a123dec77d1fb3cb34de03a9bbd36d9c4399a512509c84e0ae204b2a0ba1441a28711950bc07f8586266b924d7407454aae106f8d
|
7
|
+
data.tar.gz: c1c89a2d0cfe93294252d7ec0c78ed1776ea195345fcc3b9409d3ae79ae3cb1f20f0f5e679fc40e08aa0b039ec978c040df3c02da60f2b6f43eb4eb68f01a439
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -114,9 +114,15 @@ We'd love your help building the TigerBeetle Ruby gem.
|
|
114
114
|
- For any discovered problems or questions about the Ruby client — [open a new issue](https://github.com/antstorm/tigerbeetle-ruby/issues/new)
|
115
115
|
- For codebase improvements:
|
116
116
|
- Fork this repo
|
117
|
+
- Unpack the native ext with `bundle exec rake compile`
|
117
118
|
- Implement your changes
|
118
119
|
- Ensure the tests pass by running `bundle exec rspec`
|
119
120
|
- Open a new pull request
|
121
|
+
- If you're making changes to the native code, you might need to build TigerBeetle C client
|
122
|
+
- Pull in the TigerBeetle submodule with `git submodule update --init --recursive --remote`
|
123
|
+
- Install Zig `cd ext/tb_client/tigerbeetle && zig/download.sh`
|
124
|
+
- Add `zig` to your PATH `export PATH=$PATH:<PATH-TO-THIS-REPO>/ext/tb_client/tigerbeetle/zig`
|
125
|
+
- Compile the client `bundle exec rake clean compile`
|
120
126
|
|
121
127
|
|
122
128
|
## License
|
data/ext/tb_client/pkg.tar.gz
CHANGED
Binary file
|
data/lib/tigerbeetle/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tigerbeetle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Anthony D
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '0'
|
126
126
|
requirements: []
|
127
|
-
rubygems_version: 3.5.
|
127
|
+
rubygems_version: 3.5.22
|
128
128
|
signing_key:
|
129
129
|
specification_version: 4
|
130
130
|
summary: TigerBeetle Ruby client
|