active_recall 1.8.0 → 1.8.3
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 -3
- data/.tool-versions +1 -1
- data/Gemfile.lock +11 -10
- data/README.md +1 -1
- data/lib/active_recall/version.rb +1 -1
- 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: 52f95d564c23b6dc54674db372b9d96d2337c8e04fb2f35914fdb5e72b286cf5
|
|
4
|
+
data.tar.gz: 0fbf28c7111877c329e7953f3593cad3e8c0ecea0682ede2f078443edd175c58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97baebcca8289c8460138360ebf3440fbd47646d74dc8c28ee77d762a7cdb91fd23f6069737058adb9dd08e38fe3323cec409e1e4a7a23c4120eee8b0a83ee95
|
|
7
|
+
data.tar.gz: 4e94302dd2412f9803167442f323f42335072a29facc90bc46db77f2650485432851b85ac087745a1e6e0c518c20abe93d049eff89531b511447ef76b0f7ec7a
|
data/.github/workflows/tests.yml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: Tests
|
|
1
|
+
name: Tests
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
pull_request:
|
|
@@ -16,11 +16,13 @@ jobs:
|
|
|
16
16
|
fail-fast: false
|
|
17
17
|
matrix:
|
|
18
18
|
os:
|
|
19
|
-
- macos
|
|
19
|
+
- macos
|
|
20
20
|
- ubuntu
|
|
21
21
|
ruby:
|
|
22
22
|
- 2.7
|
|
23
23
|
- 3.0
|
|
24
|
+
- 3.1
|
|
25
|
+
- 3.2
|
|
24
26
|
allow_failures:
|
|
25
27
|
- false
|
|
26
28
|
include:
|
|
@@ -41,4 +43,4 @@ jobs:
|
|
|
41
43
|
ruby-version: ${{ matrix.ruby }}
|
|
42
44
|
bundler-cache: true
|
|
43
45
|
- name: Test
|
|
44
|
-
run: bundle exec rake spec || $ALLOW_FAILURES
|
|
46
|
+
run: bundle exec rake spec || $ALLOW_FAILURES
|
data/.tool-versions
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby 3.
|
|
1
|
+
ruby 3.2.2
|
data/Gemfile.lock
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
active_recall (1.8.
|
|
4
|
+
active_recall (1.8.3)
|
|
5
5
|
activerecord (>= 5.2.3, <= 7.1)
|
|
6
6
|
activesupport (>= 5.2.3, <= 7.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activemodel (7.0.
|
|
12
|
-
activesupport (= 7.0.
|
|
13
|
-
activerecord (7.0.
|
|
14
|
-
activemodel (= 7.0.
|
|
15
|
-
activesupport (= 7.0.
|
|
16
|
-
activesupport (7.0.
|
|
11
|
+
activemodel (7.0.5.1)
|
|
12
|
+
activesupport (= 7.0.5.1)
|
|
13
|
+
activerecord (7.0.5.1)
|
|
14
|
+
activemodel (= 7.0.5.1)
|
|
15
|
+
activesupport (= 7.0.5.1)
|
|
16
|
+
activesupport (7.0.5.1)
|
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
18
18
|
i18n (>= 1.6, < 2)
|
|
19
19
|
minitest (>= 5.1)
|
|
20
20
|
tzinfo (~> 2.0)
|
|
21
21
|
concurrent-ruby (1.2.2)
|
|
22
22
|
diff-lcs (1.3)
|
|
23
|
-
i18n (1.
|
|
23
|
+
i18n (1.14.1)
|
|
24
24
|
concurrent-ruby (~> 1.0)
|
|
25
|
-
minitest (5.18.
|
|
25
|
+
minitest (5.18.1)
|
|
26
26
|
rake (12.3.3)
|
|
27
27
|
rdoc (6.2.0)
|
|
28
28
|
rspec (3.8.0)
|
|
@@ -44,6 +44,7 @@ GEM
|
|
|
44
44
|
|
|
45
45
|
PLATFORMS
|
|
46
46
|
ruby
|
|
47
|
+
x86_64-linux
|
|
47
48
|
|
|
48
49
|
DEPENDENCIES
|
|
49
50
|
active_recall!
|
|
@@ -53,4 +54,4 @@ DEPENDENCIES
|
|
|
53
54
|
sqlite3
|
|
54
55
|
|
|
55
56
|
BUNDLED WITH
|
|
56
|
-
2.
|
|
57
|
+
2.4.14
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**ActiveRecall** is a spaced-repetition system that allows you to treat arbitrary [ActiveRecord](https://github.com/rails/rails/tree/master/activerecord) models as if they were flashcards to be learned and reviewed.
|
|
4
4
|
It it based on, and is intended to be backwards compatible with, the [okubo](https://github.com/rgravina/okubo) gem.
|
|
5
|
-
The primary differentiating features are that it lets the user specify the scheduling algorithm and is fully compatible with Rails 6
|
|
5
|
+
The primary differentiating features are that it lets the user specify the scheduling algorithm and is fully compatible with Rails 6+ and Ruby 3+.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_recall
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Gravina
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-
|
|
12
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -160,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
160
160
|
- !ruby/object:Gem::Version
|
|
161
161
|
version: '0'
|
|
162
162
|
requirements: []
|
|
163
|
-
rubygems_version: 3.
|
|
163
|
+
rubygems_version: 3.4.10
|
|
164
164
|
signing_key:
|
|
165
165
|
specification_version: 4
|
|
166
166
|
summary: A spaced-repetition system
|