active_recall 2.0.0 → 2.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5241d31af65cc21d9fd3ab8a68696587e5af6fdfe62ecf6b4ab719eadda9ee80
4
- data.tar.gz: 7572b3444399f07faa04c093ca4b0f0b95f0d272804aee5e884852824f5718c7
3
+ metadata.gz: 8709001a31591b453227c504d7f96684f924ac267d6c380ab8c5e6b86913b24c
4
+ data.tar.gz: 5efe33c2262b0b4549ff9f59c24ce504f65a798f5b2af1068bb10a419a7c182a
5
5
  SHA512:
6
- metadata.gz: 8d44c8efe2acb539484adcb6c4d421ddebf2cdfb35b05c9b49e02c72a65ea1047c8b7dd145261fbbd9e8678221dc5300cdc3551600e263ac7b52947a78d94660
7
- data.tar.gz: bb043b33bd7242b2020a65d4e9e10953dcfbd136e42c5ac0964110c01a26400ad3b0a655d23ca2d74e634d7d41c8791d504f2cca78007c9db0cf49b35dd790c2
6
+ metadata.gz: f430431bf3ee4fd729c39a94915ad6b29750277631f5e85700684a464a71f633872033f69fcb763b01f3f2376afb0fbac7051b382ddc4843fe149502e2a9119a
7
+ data.tar.gz: '06837043f0e1290b99fea84f6ed317263f2155d10619e9ab08dac06bd6c9807703863848b1311216d08a23e3254176a03e76cc3c045fdd96f4e0de00db8d09bd'
@@ -25,10 +25,6 @@ jobs:
25
25
  - 3.3
26
26
  allow_failures:
27
27
  - false
28
- include:
29
- - os: ubuntu
30
- ruby: ruby-head
31
- allow_failures: true
32
28
  env:
33
29
  BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
34
30
  ALLOW_FAILURES: "${{ matrix.allow_failures }}"
@@ -42,5 +38,13 @@ jobs:
42
38
  with:
43
39
  ruby-version: ${{ matrix.ruby }}
44
40
  bundler-cache: true
45
- - name: Test
46
- run: bundle exec rake spec || $ALLOW_FAILURES
41
+ - name: Install Appraisal Dependencies
42
+ run: bundle exec appraisal install
43
+ - name: Test with Rails 6.0
44
+ run: bundle exec appraisal rails-6-0 rake spec
45
+ - name: Test with Rails 6.1
46
+ run: bundle exec appraisal rails-6-1 rake spec
47
+ - name: Test with Rails 7.0
48
+ run: bundle exec appraisal rails-7-0 rake spec
49
+ - name: Test with Rails 7.0
50
+ run: bundle exec appraisal rails-7-0 rake spec
data/.gitignore CHANGED
@@ -15,3 +15,4 @@ test/tmp
15
15
  test/version_tmp
16
16
  tmp
17
17
  .idea/
18
+ .DS_Store
data/Appraisals ADDED
@@ -0,0 +1,15 @@
1
+ appraise "rails-6-0" do
2
+ gem "rails", "~> 6.0"
3
+ end
4
+
5
+ appraise "rails-6-1" do
6
+ gem "rails", "~> 6.1"
7
+ end
8
+
9
+ appraise "rails-7-0" do
10
+ gem "rails", "~> 7.0"
11
+ end
12
+
13
+ appraise "rails-7-1" do
14
+ gem "rails", "~> 7.1"
15
+ end
data/Gemfile.lock CHANGED
@@ -1,30 +1,191 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_recall (2.0.0)
4
+ active_recall (2.0.2)
5
5
  activerecord (>= 6.0, <= 7.2)
6
6
  activesupport (>= 6.0, <= 7.2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
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)
11
+ actioncable (7.1.3)
12
+ actionpack (= 7.1.3)
13
+ activesupport (= 7.1.3)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ zeitwerk (~> 2.6)
17
+ actionmailbox (7.1.3)
18
+ actionpack (= 7.1.3)
19
+ activejob (= 7.1.3)
20
+ activerecord (= 7.1.3)
21
+ activestorage (= 7.1.3)
22
+ activesupport (= 7.1.3)
23
+ mail (>= 2.7.1)
24
+ net-imap
25
+ net-pop
26
+ net-smtp
27
+ actionmailer (7.1.3)
28
+ actionpack (= 7.1.3)
29
+ actionview (= 7.1.3)
30
+ activejob (= 7.1.3)
31
+ activesupport (= 7.1.3)
32
+ mail (~> 2.5, >= 2.5.4)
33
+ net-imap
34
+ net-pop
35
+ net-smtp
36
+ rails-dom-testing (~> 2.2)
37
+ actionpack (7.1.3)
38
+ actionview (= 7.1.3)
39
+ activesupport (= 7.1.3)
40
+ nokogiri (>= 1.8.5)
41
+ racc
42
+ rack (>= 2.2.4)
43
+ rack-session (>= 1.0.1)
44
+ rack-test (>= 0.6.3)
45
+ rails-dom-testing (~> 2.2)
46
+ rails-html-sanitizer (~> 1.6)
47
+ actiontext (7.1.3)
48
+ actionpack (= 7.1.3)
49
+ activerecord (= 7.1.3)
50
+ activestorage (= 7.1.3)
51
+ activesupport (= 7.1.3)
52
+ globalid (>= 0.6.0)
53
+ nokogiri (>= 1.8.5)
54
+ actionview (7.1.3)
55
+ activesupport (= 7.1.3)
56
+ builder (~> 3.1)
57
+ erubi (~> 1.11)
58
+ rails-dom-testing (~> 2.2)
59
+ rails-html-sanitizer (~> 1.6)
60
+ activejob (7.1.3)
61
+ activesupport (= 7.1.3)
62
+ globalid (>= 0.3.6)
63
+ activemodel (7.1.3)
64
+ activesupport (= 7.1.3)
65
+ activerecord (7.1.3)
66
+ activemodel (= 7.1.3)
67
+ activesupport (= 7.1.3)
68
+ timeout (>= 0.4.0)
69
+ activestorage (7.1.3)
70
+ actionpack (= 7.1.3)
71
+ activejob (= 7.1.3)
72
+ activerecord (= 7.1.3)
73
+ activesupport (= 7.1.3)
74
+ marcel (~> 1.0)
75
+ activesupport (7.1.3)
76
+ base64
77
+ bigdecimal
17
78
  concurrent-ruby (~> 1.0, >= 1.0.2)
79
+ connection_pool (>= 2.2.5)
80
+ drb
18
81
  i18n (>= 1.6, < 2)
19
82
  minitest (>= 5.1)
83
+ mutex_m
20
84
  tzinfo (~> 2.0)
85
+ appraisal (2.5.0)
86
+ bundler
87
+ rake
88
+ thor (>= 0.14.0)
89
+ ast (2.4.2)
90
+ base64 (0.2.0)
91
+ bigdecimal (3.1.6)
92
+ builder (3.2.4)
21
93
  concurrent-ruby (1.2.2)
94
+ connection_pool (2.4.1)
95
+ crass (1.0.6)
96
+ date (3.3.4)
22
97
  diff-lcs (1.3)
98
+ drb (2.2.0)
99
+ ruby2_keywords
100
+ erubi (1.12.0)
101
+ globalid (1.2.1)
102
+ activesupport (>= 6.1)
23
103
  i18n (1.14.1)
24
104
  concurrent-ruby (~> 1.0)
105
+ io-console (0.7.2)
106
+ irb (1.11.1)
107
+ rdoc
108
+ reline (>= 0.4.2)
109
+ json (2.7.2)
110
+ language_server-protocol (3.17.0.3)
111
+ lint_roller (1.1.0)
112
+ loofah (2.22.0)
113
+ crass (~> 1.0.2)
114
+ nokogiri (>= 1.12.0)
115
+ mail (2.8.1)
116
+ mini_mime (>= 0.1.1)
117
+ net-imap
118
+ net-pop
119
+ net-smtp
120
+ marcel (1.0.2)
121
+ mini_mime (1.1.5)
122
+ mini_portile2 (2.8.5)
25
123
  minitest (5.18.1)
124
+ mutex_m (0.2.0)
125
+ net-imap (0.4.9.1)
126
+ date
127
+ net-protocol
128
+ net-pop (0.1.2)
129
+ net-protocol
130
+ net-protocol (0.2.2)
131
+ timeout
132
+ net-smtp (0.4.0.1)
133
+ net-protocol
134
+ nio4r (2.7.0)
135
+ nokogiri (1.16.0)
136
+ mini_portile2 (~> 2.8.2)
137
+ racc (~> 1.4)
138
+ nokogiri (1.16.0-x86_64-linux)
139
+ racc (~> 1.4)
140
+ parallel (1.24.0)
141
+ parser (3.3.1.0)
142
+ ast (~> 2.4.1)
143
+ racc
144
+ racc (1.7.3)
145
+ rack (3.0.8)
146
+ rack-session (2.0.0)
147
+ rack (>= 3.0.0)
148
+ rack-test (2.1.0)
149
+ rack (>= 1.3)
150
+ rackup (2.1.0)
151
+ rack (>= 3)
152
+ webrick (~> 1.8)
153
+ rails (7.1.3)
154
+ actioncable (= 7.1.3)
155
+ actionmailbox (= 7.1.3)
156
+ actionmailer (= 7.1.3)
157
+ actionpack (= 7.1.3)
158
+ actiontext (= 7.1.3)
159
+ actionview (= 7.1.3)
160
+ activejob (= 7.1.3)
161
+ activemodel (= 7.1.3)
162
+ activerecord (= 7.1.3)
163
+ activestorage (= 7.1.3)
164
+ activesupport (= 7.1.3)
165
+ bundler (>= 1.15.0)
166
+ railties (= 7.1.3)
167
+ rails-dom-testing (2.2.0)
168
+ activesupport (>= 5.0.0)
169
+ minitest
170
+ nokogiri (>= 1.6)
171
+ rails-html-sanitizer (1.6.0)
172
+ loofah (~> 2.21)
173
+ nokogiri (~> 1.14)
174
+ railties (7.1.3)
175
+ actionpack (= 7.1.3)
176
+ activesupport (= 7.1.3)
177
+ irb
178
+ rackup (>= 1.0.0)
179
+ rake (>= 12.2)
180
+ thor (~> 1.0, >= 1.2.2)
181
+ zeitwerk (~> 2.6)
182
+ rainbow (3.1.1)
26
183
  rake (12.3.3)
27
184
  rdoc (6.2.0)
185
+ regexp_parser (2.9.0)
186
+ reline (0.4.2)
187
+ io-console (~> 0.5)
188
+ rexml (3.2.6)
28
189
  rspec (3.8.0)
29
190
  rspec-core (~> 3.8.0)
30
191
  rspec-expectations (~> 3.8.0)
@@ -38,9 +199,47 @@ GEM
38
199
  diff-lcs (>= 1.2.0, < 2.0)
39
200
  rspec-support (~> 3.8.0)
40
201
  rspec-support (3.8.2)
202
+ rubocop (1.62.1)
203
+ json (~> 2.3)
204
+ language_server-protocol (>= 3.17.0)
205
+ parallel (~> 1.10)
206
+ parser (>= 3.3.0.2)
207
+ rainbow (>= 2.2.2, < 4.0)
208
+ regexp_parser (>= 1.8, < 3.0)
209
+ rexml (>= 3.2.5, < 4.0)
210
+ rubocop-ast (>= 1.31.1, < 2.0)
211
+ ruby-progressbar (~> 1.7)
212
+ unicode-display_width (>= 2.4.0, < 3.0)
213
+ rubocop-ast (1.31.2)
214
+ parser (>= 3.3.0.4)
215
+ rubocop-performance (1.20.2)
216
+ rubocop (>= 1.48.1, < 2.0)
217
+ rubocop-ast (>= 1.30.0, < 2.0)
218
+ ruby-progressbar (1.13.0)
219
+ ruby2_keywords (0.0.5)
41
220
  sqlite3 (1.4.2)
221
+ standard (1.35.1)
222
+ language_server-protocol (~> 3.17.0.2)
223
+ lint_roller (~> 1.0)
224
+ rubocop (~> 1.62.0)
225
+ standard-custom (~> 1.0.0)
226
+ standard-performance (~> 1.3)
227
+ standard-custom (1.0.2)
228
+ lint_roller (~> 1.0)
229
+ rubocop (~> 1.50)
230
+ standard-performance (1.3.1)
231
+ lint_roller (~> 1.1)
232
+ rubocop-performance (~> 1.20.2)
233
+ thor (1.3.0)
234
+ timeout (0.4.1)
42
235
  tzinfo (2.0.6)
43
236
  concurrent-ruby (~> 1.0)
237
+ unicode-display_width (2.5.0)
238
+ webrick (1.8.1)
239
+ websocket-driver (0.7.6)
240
+ websocket-extensions (>= 0.1.0)
241
+ websocket-extensions (0.1.5)
242
+ zeitwerk (2.6.12)
44
243
 
45
244
  PLATFORMS
46
245
  ruby
@@ -48,10 +247,13 @@ PLATFORMS
48
247
 
49
248
  DEPENDENCIES
50
249
  active_recall!
250
+ appraisal
251
+ rails (>= 6.0, <= 7.2)
51
252
  rake (>= 12.0)
52
253
  rdoc
53
254
  rspec (>= 3.0)
54
255
  sqlite3
256
+ standard
55
257
 
56
258
  BUNDLED WITH
57
259
  2.4.14
data/README.md CHANGED
@@ -128,7 +128,7 @@ user.words.next #=> nil
128
128
  ## Development
129
129
 
130
130
  After checking out the repo, run `bin/setup` to install dependencies.
131
- Then, run `rake spec` to run the tests.
131
+ Then, run `bin/spec` to run the tests.
132
132
  You can also run `bin/console` for an interactive prompt that will allow you to experiment.
133
133
 
134
134
  To install this gem onto your local machine, run `bundle exec rake install`.
@@ -32,10 +32,13 @@ Gem::Specification.new do |spec|
32
32
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
33
  spec.require_paths = ["lib"]
34
34
 
35
+ spec.add_development_dependency "appraisal"
36
+ spec.add_development_dependency "rails", ">= 6.0", "<= 7.2"
35
37
  spec.add_development_dependency "rake", ">= 12.0"
36
38
  spec.add_development_dependency "rdoc"
37
39
  spec.add_development_dependency "rspec", ">= 3.0"
38
40
  spec.add_development_dependency "sqlite3"
41
+ spec.add_development_dependency "standard"
39
42
  spec.add_runtime_dependency "activerecord", ">= 6.0", "<= 7.2"
40
43
  spec.add_runtime_dependency "activesupport", ">= 6.0", "<= 7.2"
41
44
  spec.required_ruby_version = ">= 3.0"
data/bin/lint ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ standardrb --fix
data/bin/setup CHANGED
@@ -4,3 +4,4 @@ IFS=$'\n\t'
4
4
  set -vx
5
5
 
6
6
  bundle install
7
+ bundle exec appraisal install
data/bin/spec ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env bash
2
+ set -eo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ appraisal=${1:-}
7
+
8
+ if [ -z "$appraisal" ]; then
9
+ # Run tests for all appraisals if none is specified
10
+ bundle exec appraisal rake spec
11
+ else
12
+ # Run tests for a specific appraisal
13
+ bundle exec appraisal "$appraisal" rake spec
14
+ fi
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 6.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,231 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ active_recall (2.0.2)
5
+ activerecord (>= 6.0, <= 7.2)
6
+ activesupport (>= 6.0, <= 7.2)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (6.1.7.6)
12
+ actionpack (= 6.1.7.6)
13
+ activesupport (= 6.1.7.6)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.1.7.6)
17
+ actionpack (= 6.1.7.6)
18
+ activejob (= 6.1.7.6)
19
+ activerecord (= 6.1.7.6)
20
+ activestorage (= 6.1.7.6)
21
+ activesupport (= 6.1.7.6)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.1.7.6)
24
+ actionpack (= 6.1.7.6)
25
+ actionview (= 6.1.7.6)
26
+ activejob (= 6.1.7.6)
27
+ activesupport (= 6.1.7.6)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.1.7.6)
31
+ actionview (= 6.1.7.6)
32
+ activesupport (= 6.1.7.6)
33
+ rack (~> 2.0, >= 2.0.9)
34
+ rack-test (>= 0.6.3)
35
+ rails-dom-testing (~> 2.0)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.1.7.6)
38
+ actionpack (= 6.1.7.6)
39
+ activerecord (= 6.1.7.6)
40
+ activestorage (= 6.1.7.6)
41
+ activesupport (= 6.1.7.6)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.1.7.6)
44
+ activesupport (= 6.1.7.6)
45
+ builder (~> 3.1)
46
+ erubi (~> 1.4)
47
+ rails-dom-testing (~> 2.0)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.1.7.6)
50
+ activesupport (= 6.1.7.6)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.1.7.6)
53
+ activesupport (= 6.1.7.6)
54
+ activerecord (6.1.7.6)
55
+ activemodel (= 6.1.7.6)
56
+ activesupport (= 6.1.7.6)
57
+ activestorage (6.1.7.6)
58
+ actionpack (= 6.1.7.6)
59
+ activejob (= 6.1.7.6)
60
+ activerecord (= 6.1.7.6)
61
+ activesupport (= 6.1.7.6)
62
+ marcel (~> 1.0)
63
+ mini_mime (>= 1.1.0)
64
+ activesupport (6.1.7.6)
65
+ concurrent-ruby (~> 1.0, >= 1.0.2)
66
+ i18n (>= 1.6, < 2)
67
+ minitest (>= 5.1)
68
+ tzinfo (~> 2.0)
69
+ zeitwerk (~> 2.3)
70
+ appraisal (2.5.0)
71
+ bundler
72
+ rake
73
+ thor (>= 0.14.0)
74
+ ast (2.4.2)
75
+ builder (3.2.4)
76
+ concurrent-ruby (1.2.3)
77
+ crass (1.0.6)
78
+ date (3.3.4)
79
+ diff-lcs (1.5.0)
80
+ erubi (1.12.0)
81
+ globalid (1.2.1)
82
+ activesupport (>= 6.1)
83
+ i18n (1.14.1)
84
+ concurrent-ruby (~> 1.0)
85
+ json (2.7.2)
86
+ language_server-protocol (3.17.0.3)
87
+ lint_roller (1.1.0)
88
+ loofah (2.22.0)
89
+ crass (~> 1.0.2)
90
+ nokogiri (>= 1.12.0)
91
+ mail (2.8.1)
92
+ mini_mime (>= 0.1.1)
93
+ net-imap
94
+ net-pop
95
+ net-smtp
96
+ marcel (1.0.2)
97
+ method_source (1.0.0)
98
+ mini_mime (1.1.5)
99
+ minitest (5.21.2)
100
+ net-imap (0.4.9.1)
101
+ date
102
+ net-protocol
103
+ net-pop (0.1.2)
104
+ net-protocol
105
+ net-protocol (0.2.2)
106
+ timeout
107
+ net-smtp (0.4.0.1)
108
+ net-protocol
109
+ nio4r (2.7.0)
110
+ nokogiri (1.16.0-arm64-darwin)
111
+ racc (~> 1.4)
112
+ parallel (1.24.0)
113
+ parser (3.3.1.0)
114
+ ast (~> 2.4.1)
115
+ racc
116
+ psych (5.1.2)
117
+ stringio
118
+ racc (1.7.3)
119
+ rack (2.2.8)
120
+ rack-test (2.1.0)
121
+ rack (>= 1.3)
122
+ rails (6.1.7.6)
123
+ actioncable (= 6.1.7.6)
124
+ actionmailbox (= 6.1.7.6)
125
+ actionmailer (= 6.1.7.6)
126
+ actionpack (= 6.1.7.6)
127
+ actiontext (= 6.1.7.6)
128
+ actionview (= 6.1.7.6)
129
+ activejob (= 6.1.7.6)
130
+ activemodel (= 6.1.7.6)
131
+ activerecord (= 6.1.7.6)
132
+ activestorage (= 6.1.7.6)
133
+ activesupport (= 6.1.7.6)
134
+ bundler (>= 1.15.0)
135
+ railties (= 6.1.7.6)
136
+ sprockets-rails (>= 2.0.0)
137
+ rails-dom-testing (2.2.0)
138
+ activesupport (>= 5.0.0)
139
+ minitest
140
+ nokogiri (>= 1.6)
141
+ rails-html-sanitizer (1.6.0)
142
+ loofah (~> 2.21)
143
+ nokogiri (~> 1.14)
144
+ railties (6.1.7.6)
145
+ actionpack (= 6.1.7.6)
146
+ activesupport (= 6.1.7.6)
147
+ method_source
148
+ rake (>= 12.2)
149
+ thor (~> 1.0)
150
+ rainbow (3.1.1)
151
+ rake (13.1.0)
152
+ rdoc (6.6.2)
153
+ psych (>= 4.0.0)
154
+ regexp_parser (2.9.0)
155
+ rexml (3.2.6)
156
+ rspec (3.12.0)
157
+ rspec-core (~> 3.12.0)
158
+ rspec-expectations (~> 3.12.0)
159
+ rspec-mocks (~> 3.12.0)
160
+ rspec-core (3.12.2)
161
+ rspec-support (~> 3.12.0)
162
+ rspec-expectations (3.12.3)
163
+ diff-lcs (>= 1.2.0, < 2.0)
164
+ rspec-support (~> 3.12.0)
165
+ rspec-mocks (3.12.6)
166
+ diff-lcs (>= 1.2.0, < 2.0)
167
+ rspec-support (~> 3.12.0)
168
+ rspec-support (3.12.1)
169
+ rubocop (1.62.1)
170
+ json (~> 2.3)
171
+ language_server-protocol (>= 3.17.0)
172
+ parallel (~> 1.10)
173
+ parser (>= 3.3.0.2)
174
+ rainbow (>= 2.2.2, < 4.0)
175
+ regexp_parser (>= 1.8, < 3.0)
176
+ rexml (>= 3.2.5, < 4.0)
177
+ rubocop-ast (>= 1.31.1, < 2.0)
178
+ ruby-progressbar (~> 1.7)
179
+ unicode-display_width (>= 2.4.0, < 3.0)
180
+ rubocop-ast (1.31.2)
181
+ parser (>= 3.3.0.4)
182
+ rubocop-performance (1.20.2)
183
+ rubocop (>= 1.48.1, < 2.0)
184
+ rubocop-ast (>= 1.30.0, < 2.0)
185
+ ruby-progressbar (1.13.0)
186
+ sprockets (4.2.1)
187
+ concurrent-ruby (~> 1.0)
188
+ rack (>= 2.2.4, < 4)
189
+ sprockets-rails (3.4.2)
190
+ actionpack (>= 5.2)
191
+ activesupport (>= 5.2)
192
+ sprockets (>= 3.0.0)
193
+ sqlite3 (1.7.1-arm64-darwin)
194
+ standard (1.35.1)
195
+ language_server-protocol (~> 3.17.0.2)
196
+ lint_roller (~> 1.0)
197
+ rubocop (~> 1.62.0)
198
+ standard-custom (~> 1.0.0)
199
+ standard-performance (~> 1.3)
200
+ standard-custom (1.0.2)
201
+ lint_roller (~> 1.0)
202
+ rubocop (~> 1.50)
203
+ standard-performance (1.3.1)
204
+ lint_roller (~> 1.1)
205
+ rubocop-performance (~> 1.20.2)
206
+ stringio (3.1.0)
207
+ thor (1.3.0)
208
+ timeout (0.4.1)
209
+ tzinfo (2.0.6)
210
+ concurrent-ruby (~> 1.0)
211
+ unicode-display_width (2.5.0)
212
+ websocket-driver (0.7.6)
213
+ websocket-extensions (>= 0.1.0)
214
+ websocket-extensions (0.1.5)
215
+ zeitwerk (2.6.12)
216
+
217
+ PLATFORMS
218
+ arm64-darwin-23
219
+
220
+ DEPENDENCIES
221
+ active_recall!
222
+ appraisal
223
+ rails (~> 6.0)
224
+ rake (>= 12.0)
225
+ rdoc
226
+ rspec (>= 3.0)
227
+ sqlite3
228
+ standard
229
+
230
+ BUNDLED WITH
231
+ 2.4.14
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "~> 6.1"
6
+
7
+ gemspec path: "../"