nagori-fsrs 0.1.0.dev.20260702.4f3ef9e → 0.1.0.dev.20260702.ff5b7ec

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -4
  3. data/lib/nagori/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 034daf2f22d96ef101a7487b18f3acdeaa1fbbd0f9c002a2770fd766dc39c89f
4
- data.tar.gz: 7f944f3680d43984071073d55722b23f4aca7f81baed3aedc205f717e63e4958
3
+ metadata.gz: f596dce2d03dc530050d98d30b32139b40b71012ddc011bd0ef2f2870984f68e
4
+ data.tar.gz: b5c7aa7d0ba6ddea29c2496d8d32979e5004258db4a56a9f439222f5f669e4ad
5
5
  SHA512:
6
- metadata.gz: 4f6c461b901181982a649b0da687915d9dfe2e151a92f18595c9267af117890775949aaae32aa6083e77195ae2a6c560cb83ffcc9961fe8a7865f9265f1e8a73
7
- data.tar.gz: d6b601b6e966a40ee2b307278388ec18233d04e998d48871aa3d444fe2f1203849a07832b48bb9afefa801c30062e3d1962e5cbb90a268dd1e954185f3e27bd5
6
+ metadata.gz: 6cae8c9b023bb959196753654cf47cd7c87419940c12b6ae4664dbc69d1fa5363f127d42017f20682001f69680d158acaf0fa6c49087c2e480bc96073d094092
7
+ data.tar.gz: e692d6a7aea4291df85dc6467ea0c4be2c9c0ce46ddbad680b714973f24b4a650f19db27c5e46c61138910e1393706571a8807e4ec7bb60b7c325b3a9e7005bb
data/README.md CHANGED
@@ -1,4 +1,8 @@
1
- <h1 align="center">Nagori 名残</h1>
1
+ <p align="center">
2
+ <img src="logo.png" alt="nagori-fsrs" width="150">
3
+ </p>
4
+
5
+ <h1 align="center">nagori-fsrs</h1>
2
6
 
3
7
  <p align="center">
4
8
  <a href="https://rubygems.org/gems/nagori-fsrs"><img src="https://img.shields.io/gem/v/nagori-fsrs" alt="Gem Version"></a>
@@ -7,11 +11,11 @@
7
11
  <a href="https://rubygems.org/gems/nagori-fsrs"><img src="https://img.shields.io/gem/dt/nagori-fsrs" alt="Downloads"></a>
8
12
  </p>
9
13
 
10
- Ruby bindings for [fsrs-rs](https://github.com/open-spaced-repetition/fsrs-rs) (the [`fsrs`](https://crates.io/crates/fsrs) crate) — the **FSRS-6** spaced-repetition scheduler, optimizer, and simulator, in Rust.
14
+ Ruby bindings for [fsrs-rs](https://github.com/open-spaced-repetition/fsrs-rs) (the [`fsrs`](https://crates.io/crates/fsrs) crate) — the **FSRS-6** spaced-repetition scheduler, optimizer, and simulator.
11
15
 
12
- Nagori is a thin, idiomatic wrapper: plain Ruby values in and out (hashes, arrays, keyword args), the number crunching in Rust. Long-running calls (`compute_parameters`, `evaluate`, `simulate`, `optimal_retention`) release the GVL so they don't block other threads.
16
+ Plain Ruby values in and out (hashes, arrays, keyword args); the computation runs in Rust. Long-running calls (`compute_parameters`, `evaluate`, `simulate`, `optimal_retention`) release the GVL so they don't block other threads.
13
17
 
14
- Built the same way as [kabosu](https://github.com/davafons/kabosu): [rb_sys](https://github.com/oxidize-rb/rb-sys) + [magnus](https://github.com/matsadler/magnus), precompiled for the usual platform matrix.
18
+ Built with [rb_sys](https://github.com/oxidize-rb/rb-sys) and [magnus](https://github.com/matsadler/magnus), precompiled for the usual platform matrix.
15
19
 
16
20
  ## Usage
17
21
 
@@ -1,3 +1,3 @@
1
1
  module Nagori
2
- VERSION = "0.1.0.dev.20260702.4f3ef9e".freeze
2
+ VERSION = "0.1.0.dev.20260702.ff5b7ec".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nagori-fsrs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.dev.20260702.4f3ef9e
4
+ version: 0.1.0.dev.20260702.ff5b7ec
5
5
  platform: ruby
6
6
  authors:
7
7
  - davafons