active_recall 2.1.0 → 2.3.0
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/.github/workflows/tests.yml +5 -1
- data/.tool-versions +1 -1
- data/CLAUDE.md +194 -0
- data/Gemfile +14 -1
- data/Gemfile.lock +13 -4
- data/README.md +115 -27
- data/VENDORED_LICENSES.md +54 -0
- data/gemfiles/rails_7_0.gemfile +1 -0
- data/gemfiles/rails_7_0.gemfile.lock +17 -4
- data/gemfiles/rails_7_1.gemfile +1 -0
- data/gemfiles/rails_7_1.gemfile.lock +17 -4
- data/gemfiles/rails_8_0.gemfile +1 -0
- data/gemfiles/rails_8_0.gemfile.lock +17 -3
- data/lib/active_recall/algorithms/fibonacci_sequence.rb +4 -5
- data/lib/active_recall/algorithms/fsrs/internal.rb +335 -0
- data/lib/active_recall/algorithms/fsrs.rb +110 -0
- data/lib/active_recall/algorithms/sm2.rb +3 -1
- data/lib/active_recall/configuration.rb +4 -1
- data/lib/active_recall/version.rb +1 -1
- data/lib/active_recall.rb +1 -0
- data/lib/generators/active_recall/active_recall_generator.rb +1 -0
- data/lib/generators/active_recall/templates/add_active_recall_item_fsrs_fields.rb +21 -0
- data/standard.yml +1 -1
- metadata +8 -6
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_recall
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Gravina
|
|
8
8
|
- Jayson Virissimo
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: exe
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: appraisal
|
|
@@ -168,11 +167,13 @@ files:
|
|
|
168
167
|
- ".rspec"
|
|
169
168
|
- ".tool-versions"
|
|
170
169
|
- Appraisals
|
|
170
|
+
- CLAUDE.md
|
|
171
171
|
- Gemfile
|
|
172
172
|
- Gemfile.lock
|
|
173
173
|
- LICENSE
|
|
174
174
|
- README.md
|
|
175
175
|
- Rakefile
|
|
176
|
+
- VENDORED_LICENSES.md
|
|
176
177
|
- active_recall.gemspec
|
|
177
178
|
- bin/console
|
|
178
179
|
- bin/flatten
|
|
@@ -187,6 +188,8 @@ files:
|
|
|
187
188
|
- gemfiles/rails_8_0.gemfile.lock
|
|
188
189
|
- lib/active_recall.rb
|
|
189
190
|
- lib/active_recall/algorithms/fibonacci_sequence.rb
|
|
191
|
+
- lib/active_recall/algorithms/fsrs.rb
|
|
192
|
+
- lib/active_recall/algorithms/fsrs/internal.rb
|
|
190
193
|
- lib/active_recall/algorithms/leitner_system.rb
|
|
191
194
|
- lib/active_recall/algorithms/sm2.rb
|
|
192
195
|
- lib/active_recall/algorithms/soft_leitner_system.rb
|
|
@@ -200,6 +203,7 @@ files:
|
|
|
200
203
|
- lib/generators/active_recall/active_recall_generator.rb
|
|
201
204
|
- lib/generators/active_recall/templates/add_active_recall_item_answer_counts.rb
|
|
202
205
|
- lib/generators/active_recall/templates/add_active_recall_item_easiness_factor.rb
|
|
206
|
+
- lib/generators/active_recall/templates/add_active_recall_item_fsrs_fields.rb
|
|
203
207
|
- lib/generators/active_recall/templates/create_active_recall_tables.rb
|
|
204
208
|
- lib/generators/active_recall/templates/migrate_okubo_to_active_recall.rb
|
|
205
209
|
- standard.yml
|
|
@@ -209,7 +213,6 @@ licenses:
|
|
|
209
213
|
- MIT
|
|
210
214
|
metadata:
|
|
211
215
|
allowed_push_host: https://rubygems.org/
|
|
212
|
-
post_install_message:
|
|
213
216
|
rdoc_options: []
|
|
214
217
|
require_paths:
|
|
215
218
|
- lib
|
|
@@ -224,8 +227,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
224
227
|
- !ruby/object:Gem::Version
|
|
225
228
|
version: '0'
|
|
226
229
|
requirements: []
|
|
227
|
-
rubygems_version: 3.
|
|
228
|
-
signing_key:
|
|
230
|
+
rubygems_version: 3.6.9
|
|
229
231
|
specification_version: 4
|
|
230
232
|
summary: A spaced-repetition system
|
|
231
233
|
test_files: []
|