kino 0.2.0-x86_64-linux → 0.2.1-x86_64-linux
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 +5 -0
- data/README.md +9 -1
- data/lib/kino/kino.so +0 -0
- data/lib/kino/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0617d32287199424639dd50c1fd9ea9ffee0efcfed4b1172123e0f5c96d053d7
|
|
4
|
+
data.tar.gz: '0578c1d62443114e0c6c9e2af8bf6e526b4c254ad0120bb3141058a29e90967e'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da8efb99d890d888366bdca0b29fe60ec2baca5c1106956ece910d4a723372b1084b523a4ab938a1cc9b8825efda803914d80d918c9756da7469b63173878119
|
|
7
|
+
data.tar.gz: 49a52934d97c796c9c66466ce99bf214c5abfc711dd843ff5336498509ad0ed9416360e4e3b8c90839edf89fa5954f081ca3226f18f84ca678b31f50047a5e47
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -183,7 +183,7 @@ bundle add kino # or: gem install kino (outside a bundle)
|
|
|
183
183
|
or put it in the `Gemfile` yourself:
|
|
184
184
|
|
|
185
185
|
```ruby
|
|
186
|
-
gem "kino"
|
|
186
|
+
gem "kino"
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
Then generate a config and serve:
|
|
@@ -432,6 +432,14 @@ bundle exec rake # compile, Rust tests, specs, RBS, lint
|
|
|
432
432
|
RB_SYS_CARGO_PROFILE=dev bundle exec rake compile # fast dev rebuilds
|
|
433
433
|
```
|
|
434
434
|
|
|
435
|
+
## Acknowledgements
|
|
436
|
+
|
|
437
|
+
Thanks to [Mat Sadler](https://github.com/matsadler) for [magnus](https://github.com/matsadler/magnus).
|
|
438
|
+
|
|
439
|
+
For ractors, thanks to [Koichi Sasada](https://github.com/ko1), [John Hawthorn](https://github.com/jhawthorn), [Jean Boussier](https://github.com/byroot), [Luke Gruber](https://github.com/luke-gruber), and other Ruby core contributors.
|
|
440
|
+
|
|
441
|
+
For the Rust network stack, thanks to [Sean McArthur](https://github.com/seanmonstar) for [hyper](https://github.com/hyperium/hyper), and to [Carl Lerche](https://github.com/carllerche), [Alice Ryhl](https://github.com/Darksonn), and the other [Tokio](https://github.com/tokio-rs/tokio) maintainers for the runtime underneath it. Thanks to [Joshua Barretto](https://github.com/zesterer) for [flume](https://github.com/zesterer/flume)—its channels carry every request between the network side and the workers.
|
|
442
|
+
|
|
435
443
|
## Assisted by
|
|
436
444
|
|
|
437
445
|
Claude Code (Mythos, Opus).
|
data/lib/kino/kino.so
CHANGED
|
Binary file
|
data/lib/kino/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kino
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Yaroslav Markin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logger
|