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.
- checksums.yaml +4 -4
- data/README.md +8 -4
- data/lib/nagori/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f596dce2d03dc530050d98d30b32139b40b71012ddc011bd0ef2f2870984f68e
|
|
4
|
+
data.tar.gz: b5c7aa7d0ba6ddea29c2496d8d32979e5004258db4a56a9f439222f5f669e4ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6cae8c9b023bb959196753654cf47cd7c87419940c12b6ae4664dbc69d1fa5363f127d42017f20682001f69680d158acaf0fa6c49087c2e480bc96073d094092
|
|
7
|
+
data.tar.gz: e692d6a7aea4291df85dc6467ea0c4be2c9c0ce46ddbad680b714973f24b4a650f19db27c5e46c61138910e1393706571a8807e4ec7bb60b7c325b3a9e7005bb
|
data/README.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
<
|
|
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
|
|
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
|
-
|
|
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
|
|
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
|
|
data/lib/nagori/version.rb
CHANGED