minitest-spec-rails 6.1.0 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +8 -7
- data/Appraisals +5 -12
- data/CHANGELOG.md +11 -0
- data/README.md +11 -11
- data/gemfiles/rails_v6.0.x.gemfile.lock +107 -87
- data/gemfiles/{rails_v5.2.x.gemfile → rails_v6.1.x.gemfile} +1 -1
- data/gemfiles/rails_v6.1.x.gemfile.lock +175 -0
- data/gemfiles/rails_v7.0.x.gemfile +1 -2
- data/gemfiles/rails_v7.0.x.gemfile.lock +174 -0
- data/gemfiles/rails_v7.1.x.gemfile +9 -0
- data/lib/minitest-spec-rails/init/action_cable.rb +25 -0
- data/lib/minitest-spec-rails/init/action_view.rb +1 -3
- data/lib/minitest-spec-rails/railtie.rb +23 -22
- data/lib/minitest-spec-rails/version.rb +1 -1
- data/minitest-spec-rails.gemspec +2 -0
- data/test/cases/action_cable_test.rb +38 -0
- data/test/cases/active_support_test.rb +3 -3
- data/test/cases/mini_shoulda_test.rb +3 -3
- data/test/dummy_app/app/channels/application_cable/channel.rb +4 -0
- data/test/dummy_app/app/channels/application_cable/connection.rb +4 -0
- data/test/dummy_app/init.rb +5 -12
- data/test/dummy_app/tmp/development_secret.txt +1 -0
- data/test/dummy_tests/application_controller_test.rb +18 -18
- data/test/dummy_tests/foos_helper_test.rb +2 -2
- data/test/dummy_tests/integration_test.rb +3 -3
- data/test/dummy_tests/library_test.rb +3 -3
- data/test/dummy_tests/user_mailer_test.rb +20 -21
- data/test/dummy_tests/user_test.rb +15 -15
- data/test/dummy_tests/users_controller_test.rb +1 -1
- data/test/dummy_tests/users_helper_test.rb +15 -15
- data/test/support/shared_test_case_behavior.rb +0 -4
- metadata +47 -10
- data/gemfiles/rails_v5.1.x.gemfile +0 -8
- data/gemfiles/rails_v5.1.x.gemfile.lock +0 -130
- data/gemfiles/rails_v5.2.x.gemfile.lock +0 -136
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f304aeb2d8c38daab540517fe975a5ca463a8a1662dc4a1c0a8fde9703633da
|
4
|
+
data.tar.gz: 17528237f87d64b22058b54d0e8eabd4e35ab85aae05d0dad2f1393005ac410b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dea6f258a49c5fa3a82df7578850ef8f49d0ab99e666160e6f23f8f655d99a8cc1a275ae534bc0618575de729f2616af64c93569a7dd36522429c78c81d9e2d6
|
7
|
+
data.tar.gz: 692bc720dffe70ce0cc070c3a24084cebda9a440d1bc80ca145c54f9990eb14c740fb8f4d59e20c32017883fed54866158275b832c7d69ca59b207a15cfe90b9
|
data/.github/workflows/ci.yml
CHANGED
@@ -6,21 +6,22 @@ jobs:
|
|
6
6
|
strategy:
|
7
7
|
matrix:
|
8
8
|
ruby:
|
9
|
-
-
|
10
|
-
-
|
9
|
+
- "3.0"
|
10
|
+
- "3.1"
|
11
|
+
- "3.2"
|
11
12
|
rails:
|
12
|
-
-
|
13
|
-
-
|
14
|
-
-
|
13
|
+
- "rails_v6.0.x"
|
14
|
+
- "rails_v6.1.x"
|
15
|
+
- "rails_v7.0.x"
|
15
16
|
steps:
|
16
17
|
- name: Checkout
|
17
|
-
uses: actions/checkout@
|
18
|
+
uses: actions/checkout@v3
|
18
19
|
- name: Setup System
|
19
20
|
run: |
|
20
21
|
sudo apt-get install libsqlite3-dev
|
21
22
|
echo "MTSR_RAILS_VERSION=${{ matrix.rails }}" >> $GITHUB_ENV
|
22
23
|
- name: Setup Ruby
|
23
|
-
uses:
|
24
|
+
uses: ruby/setup-ruby@v1
|
24
25
|
with:
|
25
26
|
ruby-version: ${{ matrix.ruby }}
|
26
27
|
- name: Bundle
|
data/Appraisals
CHANGED
@@ -1,22 +1,15 @@
|
|
1
1
|
|
2
|
-
appraise '
|
3
|
-
gem 'rails', '~>
|
4
|
-
# https://github.com/rails/rails/issues/29031
|
5
|
-
gem 'minitest', '5.10.1'
|
6
|
-
end
|
7
|
-
|
8
|
-
appraise 'rails-v5.2.x' do
|
9
|
-
gem 'rails', '~> 5.2.0'
|
2
|
+
appraise 'rails_v6.0.x' do
|
3
|
+
gem 'rails', '~> 6.0.0'
|
10
4
|
gem 'minitest'
|
11
5
|
end
|
12
6
|
|
13
|
-
appraise 'rails_v6.
|
14
|
-
gem 'rails', '~> 6.
|
7
|
+
appraise 'rails_v6.1.x' do
|
8
|
+
gem 'rails', '~> 6.1.0'
|
15
9
|
gem 'minitest'
|
16
10
|
end
|
17
11
|
|
18
12
|
appraise 'rails_v7.0.x' do
|
19
|
-
gem 'rails', '~> 7.0.0
|
13
|
+
gem 'rails', '~> 7.0.0'
|
20
14
|
gem 'minitest'
|
21
|
-
gem 'view_component', require: 'view_component/engine'
|
22
15
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
## 7.0.0
|
2
|
+
|
3
|
+
- Add support for ActionCable::Channel::TestCase. Fixed #117. Thanks @tijn
|
4
|
+
- Remove automated tests for Rails v5 and Ruby v2.
|
5
|
+
- Update all of our tests and examples to use non-global expectations.
|
6
|
+
- Remove `Rails.application.reloader.to_prepare` for `ActionViewBehavior`.
|
7
|
+
|
8
|
+
## 6.2.0
|
9
|
+
|
10
|
+
- Remove 'ENV['RAILS_ENV']=='test' from railtie.rb Fixes #114. Thanks @Qqwy
|
11
|
+
|
1
12
|
## 6.1.0
|
2
13
|
|
3
14
|
- Fix Rails v7 autoloading with ViewComponent. Thanks @woller
|
data/README.md
CHANGED
@@ -63,7 +63,7 @@ This <a href="https://chriskottom.com/freebies/cheatsheets_free.pdf">cheat sheet
|
|
63
63
|
assert_equal 100, foo
|
64
64
|
|
65
65
|
# MiniTest::Spec Assertion Style:
|
66
|
-
foo.must_equal 100
|
66
|
+
expect(foo).must_equal 100
|
67
67
|
```
|
68
68
|
|
69
69
|
|
@@ -72,7 +72,7 @@ require 'test_helper'
|
|
72
72
|
class UserTest < ActiveSupport::TestCase
|
73
73
|
let(:user_ken) { User.create! :email => 'ken@metaskills.net' }
|
74
74
|
it 'works' do
|
75
|
-
user_ken.must_be_instance_of User
|
75
|
+
expect(user_ken).must_be_instance_of User
|
76
76
|
end
|
77
77
|
end
|
78
78
|
```
|
@@ -152,9 +152,9 @@ class ActiveSupportCallbackTest < ActiveSupport::TestCase
|
|
152
152
|
before { @bat = 'biz' }
|
153
153
|
|
154
154
|
it 'works' do
|
155
|
-
@foo.must_equal 'foo'
|
156
|
-
@bar.must_equal 'bar'
|
157
|
-
@bat.must_equal 'biz'
|
155
|
+
expect(@foo).must_equal 'foo'
|
156
|
+
expect(@bar).must_equal 'bar'
|
157
|
+
expect(@bat).must_equal 'biz'
|
158
158
|
end
|
159
159
|
|
160
160
|
private
|
@@ -194,11 +194,11 @@ end
|
|
194
194
|
If you prefer the assertions provided by shoulda-context like `assert_same_elements`, then you may want to consider copying them [from here](https://github.com/thoughtbot/shoulda-context/blob/master/lib/shoulda/context/assertions.rb) and including them in `MiniTest::Spec` yourself. I personally recommend just replacing these assertions with something more modern. A few examples are below.
|
195
195
|
|
196
196
|
```ruby
|
197
|
-
assert_same_elements a, b
|
198
|
-
a.sort.must_equal b.sort
|
197
|
+
assert_same_elements a, b # From
|
198
|
+
expect(a.sort).must_equal b.sort # To
|
199
199
|
|
200
200
|
assert_does_not_contain a, b # From
|
201
|
-
a.wont_include b
|
201
|
+
expect(a).wont_include b # To
|
202
202
|
```
|
203
203
|
|
204
204
|
### Matchers
|
@@ -274,9 +274,9 @@ $ bundle exec appraisal rake test
|
|
274
274
|
We use the [appraisal](https://github.com/thoughtbot/appraisal) gem from Thoughtbot to help us generate the individual gemfiles for each Rails version and to run the tests locally against each generated Gemfile. The `rake appraisal test` command actually runs our test suite against all Rails versions in our `Appraisal` file. If you want to run the tests for a specific Rails version, use `bundle exec appraisal -h` for a list. For example, the following command will run the tests for Rails 4.1 only.
|
275
275
|
|
276
276
|
```shell
|
277
|
-
$ bundle exec appraisal
|
278
|
-
$ bundle exec appraisal
|
279
|
-
$ bundle exec appraisal
|
277
|
+
$ bundle exec appraisal rails_v6.0.x rake test
|
278
|
+
$ bundle exec appraisal rails_v6.1.x rake test
|
279
|
+
$ bundle exec appraisal rails_v7.0.x rake test
|
280
280
|
```
|
281
281
|
|
282
282
|
We have a few branches for each major Rails version.
|
@@ -1,152 +1,172 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
minitest-spec-rails (
|
4
|
+
minitest-spec-rails (7.0.0)
|
5
5
|
minitest (>= 5.0)
|
6
6
|
railties (>= 4.1)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (6.0.
|
12
|
-
actionpack (= 6.0.
|
11
|
+
actioncable (6.0.6.1)
|
12
|
+
actionpack (= 6.0.6.1)
|
13
13
|
nio4r (~> 2.0)
|
14
14
|
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailbox (6.0.
|
16
|
-
actionpack (= 6.0.
|
17
|
-
activejob (= 6.0.
|
18
|
-
activerecord (= 6.0.
|
19
|
-
activestorage (= 6.0.
|
20
|
-
activesupport (= 6.0.
|
15
|
+
actionmailbox (6.0.6.1)
|
16
|
+
actionpack (= 6.0.6.1)
|
17
|
+
activejob (= 6.0.6.1)
|
18
|
+
activerecord (= 6.0.6.1)
|
19
|
+
activestorage (= 6.0.6.1)
|
20
|
+
activesupport (= 6.0.6.1)
|
21
21
|
mail (>= 2.7.1)
|
22
|
-
actionmailer (6.0.
|
23
|
-
actionpack (= 6.0.
|
24
|
-
actionview (= 6.0.
|
25
|
-
activejob (= 6.0.
|
22
|
+
actionmailer (6.0.6.1)
|
23
|
+
actionpack (= 6.0.6.1)
|
24
|
+
actionview (= 6.0.6.1)
|
25
|
+
activejob (= 6.0.6.1)
|
26
26
|
mail (~> 2.5, >= 2.5.4)
|
27
27
|
rails-dom-testing (~> 2.0)
|
28
|
-
actionpack (6.0.
|
29
|
-
actionview (= 6.0.
|
30
|
-
activesupport (= 6.0.
|
28
|
+
actionpack (6.0.6.1)
|
29
|
+
actionview (= 6.0.6.1)
|
30
|
+
activesupport (= 6.0.6.1)
|
31
31
|
rack (~> 2.0, >= 2.0.8)
|
32
32
|
rack-test (>= 0.6.3)
|
33
33
|
rails-dom-testing (~> 2.0)
|
34
34
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
35
|
-
actiontext (6.0.
|
36
|
-
actionpack (= 6.0.
|
37
|
-
activerecord (= 6.0.
|
38
|
-
activestorage (= 6.0.
|
39
|
-
activesupport (= 6.0.
|
35
|
+
actiontext (6.0.6.1)
|
36
|
+
actionpack (= 6.0.6.1)
|
37
|
+
activerecord (= 6.0.6.1)
|
38
|
+
activestorage (= 6.0.6.1)
|
39
|
+
activesupport (= 6.0.6.1)
|
40
40
|
nokogiri (>= 1.8.5)
|
41
|
-
actionview (6.0.
|
42
|
-
activesupport (= 6.0.
|
41
|
+
actionview (6.0.6.1)
|
42
|
+
activesupport (= 6.0.6.1)
|
43
43
|
builder (~> 3.1)
|
44
44
|
erubi (~> 1.4)
|
45
45
|
rails-dom-testing (~> 2.0)
|
46
46
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
47
|
-
activejob (6.0.
|
48
|
-
activesupport (= 6.0.
|
47
|
+
activejob (6.0.6.1)
|
48
|
+
activesupport (= 6.0.6.1)
|
49
49
|
globalid (>= 0.3.6)
|
50
|
-
activemodel (6.0.
|
51
|
-
activesupport (= 6.0.
|
52
|
-
activerecord (6.0.
|
53
|
-
activemodel (= 6.0.
|
54
|
-
activesupport (= 6.0.
|
55
|
-
activestorage (6.0.
|
56
|
-
actionpack (= 6.0.
|
57
|
-
activejob (= 6.0.
|
58
|
-
activerecord (= 6.0.
|
59
|
-
marcel (~> 1.0
|
60
|
-
activesupport (6.0.
|
50
|
+
activemodel (6.0.6.1)
|
51
|
+
activesupport (= 6.0.6.1)
|
52
|
+
activerecord (6.0.6.1)
|
53
|
+
activemodel (= 6.0.6.1)
|
54
|
+
activesupport (= 6.0.6.1)
|
55
|
+
activestorage (6.0.6.1)
|
56
|
+
actionpack (= 6.0.6.1)
|
57
|
+
activejob (= 6.0.6.1)
|
58
|
+
activerecord (= 6.0.6.1)
|
59
|
+
marcel (~> 1.0)
|
60
|
+
activesupport (6.0.6.1)
|
61
61
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
62
62
|
i18n (>= 0.7, < 2)
|
63
63
|
minitest (~> 5.1)
|
64
64
|
tzinfo (~> 1.1)
|
65
65
|
zeitwerk (~> 2.2, >= 2.2.2)
|
66
|
-
appraisal (2.4.
|
66
|
+
appraisal (2.4.1)
|
67
67
|
bundler
|
68
68
|
rake
|
69
69
|
thor (>= 0.14.0)
|
70
70
|
builder (3.2.4)
|
71
|
-
|
71
|
+
coderay (1.1.3)
|
72
|
+
concurrent-ruby (1.2.2)
|
72
73
|
crass (1.0.6)
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
74
|
+
date (3.3.3)
|
75
|
+
erubi (1.12.0)
|
76
|
+
globalid (1.1.0)
|
77
|
+
activesupport (>= 5.0)
|
78
|
+
i18n (1.13.0)
|
77
79
|
concurrent-ruby (~> 1.0)
|
78
|
-
loofah (2.
|
80
|
+
loofah (2.21.3)
|
79
81
|
crass (~> 1.0.2)
|
80
|
-
nokogiri (>= 1.
|
81
|
-
mail (2.
|
82
|
+
nokogiri (>= 1.12.0)
|
83
|
+
mail (2.8.1)
|
82
84
|
mini_mime (>= 0.1.1)
|
83
|
-
|
85
|
+
net-imap
|
86
|
+
net-pop
|
87
|
+
net-smtp
|
88
|
+
marcel (1.0.2)
|
84
89
|
method_source (1.0.0)
|
85
|
-
mini_mime (1.1.
|
86
|
-
|
87
|
-
minitest (
|
88
|
-
|
89
|
-
|
90
|
-
|
90
|
+
mini_mime (1.1.2)
|
91
|
+
minitest (5.18.0)
|
92
|
+
minitest-focus (1.3.1)
|
93
|
+
minitest (>= 4, < 6)
|
94
|
+
net-imap (0.3.4)
|
95
|
+
date
|
96
|
+
net-protocol
|
97
|
+
net-pop (0.1.2)
|
98
|
+
net-protocol
|
99
|
+
net-protocol (0.2.1)
|
100
|
+
timeout
|
101
|
+
net-smtp (0.3.3)
|
102
|
+
net-protocol
|
103
|
+
nio4r (2.5.9)
|
104
|
+
nokogiri (1.15.1-arm64-darwin)
|
91
105
|
racc (~> 1.4)
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
106
|
+
pry (0.14.2)
|
107
|
+
coderay (~> 1.1)
|
108
|
+
method_source (~> 1.0)
|
109
|
+
racc (1.6.2)
|
110
|
+
rack (2.2.7)
|
111
|
+
rack-test (2.1.0)
|
112
|
+
rack (>= 1.3)
|
113
|
+
rails (6.0.6.1)
|
114
|
+
actioncable (= 6.0.6.1)
|
115
|
+
actionmailbox (= 6.0.6.1)
|
116
|
+
actionmailer (= 6.0.6.1)
|
117
|
+
actionpack (= 6.0.6.1)
|
118
|
+
actiontext (= 6.0.6.1)
|
119
|
+
actionview (= 6.0.6.1)
|
120
|
+
activejob (= 6.0.6.1)
|
121
|
+
activemodel (= 6.0.6.1)
|
122
|
+
activerecord (= 6.0.6.1)
|
123
|
+
activestorage (= 6.0.6.1)
|
124
|
+
activesupport (= 6.0.6.1)
|
108
125
|
bundler (>= 1.3.0)
|
109
|
-
railties (= 6.0.
|
126
|
+
railties (= 6.0.6.1)
|
110
127
|
sprockets-rails (>= 2.0.0)
|
111
128
|
rails-dom-testing (2.0.3)
|
112
129
|
activesupport (>= 4.2.0)
|
113
130
|
nokogiri (>= 1.6)
|
114
|
-
rails-html-sanitizer (1.
|
115
|
-
loofah (~> 2.
|
116
|
-
railties (6.0.
|
117
|
-
actionpack (= 6.0.
|
118
|
-
activesupport (= 6.0.
|
131
|
+
rails-html-sanitizer (1.5.0)
|
132
|
+
loofah (~> 2.19, >= 2.19.1)
|
133
|
+
railties (6.0.6.1)
|
134
|
+
actionpack (= 6.0.6.1)
|
135
|
+
activesupport (= 6.0.6.1)
|
119
136
|
method_source
|
120
137
|
rake (>= 0.8.7)
|
121
138
|
thor (>= 0.20.3, < 2.0)
|
122
|
-
rake (13.0.
|
123
|
-
sprockets (4.0
|
139
|
+
rake (13.0.6)
|
140
|
+
sprockets (4.2.0)
|
124
141
|
concurrent-ruby (~> 1.0)
|
125
|
-
rack (
|
126
|
-
sprockets-rails (3.
|
127
|
-
actionpack (>=
|
128
|
-
activesupport (>=
|
142
|
+
rack (>= 2.2.4, < 4)
|
143
|
+
sprockets-rails (3.4.2)
|
144
|
+
actionpack (>= 5.2)
|
145
|
+
activesupport (>= 5.2)
|
129
146
|
sprockets (>= 3.0.0)
|
130
|
-
sqlite3 (1.
|
131
|
-
thor (1.
|
147
|
+
sqlite3 (1.6.3-arm64-darwin)
|
148
|
+
thor (1.2.2)
|
132
149
|
thread_safe (0.3.6)
|
133
|
-
|
150
|
+
timeout (0.3.2)
|
151
|
+
tzinfo (1.2.11)
|
134
152
|
thread_safe (~> 0.1)
|
135
|
-
websocket-driver (0.7.
|
153
|
+
websocket-driver (0.7.5)
|
136
154
|
websocket-extensions (>= 0.1.0)
|
137
155
|
websocket-extensions (0.1.5)
|
138
|
-
zeitwerk (2.
|
156
|
+
zeitwerk (2.6.8)
|
139
157
|
|
140
158
|
PLATFORMS
|
141
|
-
|
159
|
+
arm64-darwin-22
|
142
160
|
|
143
161
|
DEPENDENCIES
|
144
162
|
appraisal
|
145
163
|
minitest
|
164
|
+
minitest-focus
|
146
165
|
minitest-spec-rails!
|
166
|
+
pry
|
147
167
|
rails (~> 6.0.0)
|
148
168
|
rake
|
149
169
|
sqlite3
|
150
170
|
|
151
171
|
BUNDLED WITH
|
152
|
-
|
172
|
+
2.4.12
|
@@ -0,0 +1,175 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
minitest-spec-rails (7.0.0)
|
5
|
+
minitest (>= 5.0)
|
6
|
+
railties (>= 4.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.1.7.3)
|
12
|
+
actionpack (= 6.1.7.3)
|
13
|
+
activesupport (= 6.1.7.3)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (6.1.7.3)
|
17
|
+
actionpack (= 6.1.7.3)
|
18
|
+
activejob (= 6.1.7.3)
|
19
|
+
activerecord (= 6.1.7.3)
|
20
|
+
activestorage (= 6.1.7.3)
|
21
|
+
activesupport (= 6.1.7.3)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
actionmailer (6.1.7.3)
|
24
|
+
actionpack (= 6.1.7.3)
|
25
|
+
actionview (= 6.1.7.3)
|
26
|
+
activejob (= 6.1.7.3)
|
27
|
+
activesupport (= 6.1.7.3)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.1.7.3)
|
31
|
+
actionview (= 6.1.7.3)
|
32
|
+
activesupport (= 6.1.7.3)
|
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.3)
|
38
|
+
actionpack (= 6.1.7.3)
|
39
|
+
activerecord (= 6.1.7.3)
|
40
|
+
activestorage (= 6.1.7.3)
|
41
|
+
activesupport (= 6.1.7.3)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.1.7.3)
|
44
|
+
activesupport (= 6.1.7.3)
|
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.3)
|
50
|
+
activesupport (= 6.1.7.3)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.1.7.3)
|
53
|
+
activesupport (= 6.1.7.3)
|
54
|
+
activerecord (6.1.7.3)
|
55
|
+
activemodel (= 6.1.7.3)
|
56
|
+
activesupport (= 6.1.7.3)
|
57
|
+
activestorage (6.1.7.3)
|
58
|
+
actionpack (= 6.1.7.3)
|
59
|
+
activejob (= 6.1.7.3)
|
60
|
+
activerecord (= 6.1.7.3)
|
61
|
+
activesupport (= 6.1.7.3)
|
62
|
+
marcel (~> 1.0)
|
63
|
+
mini_mime (>= 1.1.0)
|
64
|
+
activesupport (6.1.7.3)
|
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.4.1)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
builder (3.2.4)
|
75
|
+
coderay (1.1.3)
|
76
|
+
concurrent-ruby (1.2.2)
|
77
|
+
crass (1.0.6)
|
78
|
+
date (3.3.3)
|
79
|
+
erubi (1.12.0)
|
80
|
+
globalid (1.1.0)
|
81
|
+
activesupport (>= 5.0)
|
82
|
+
i18n (1.13.0)
|
83
|
+
concurrent-ruby (~> 1.0)
|
84
|
+
loofah (2.21.3)
|
85
|
+
crass (~> 1.0.2)
|
86
|
+
nokogiri (>= 1.12.0)
|
87
|
+
mail (2.8.1)
|
88
|
+
mini_mime (>= 0.1.1)
|
89
|
+
net-imap
|
90
|
+
net-pop
|
91
|
+
net-smtp
|
92
|
+
marcel (1.0.2)
|
93
|
+
method_source (1.0.0)
|
94
|
+
mini_mime (1.1.2)
|
95
|
+
minitest (5.18.0)
|
96
|
+
minitest-focus (1.3.1)
|
97
|
+
minitest (>= 4, < 6)
|
98
|
+
net-imap (0.3.4)
|
99
|
+
date
|
100
|
+
net-protocol
|
101
|
+
net-pop (0.1.2)
|
102
|
+
net-protocol
|
103
|
+
net-protocol (0.2.1)
|
104
|
+
timeout
|
105
|
+
net-smtp (0.3.3)
|
106
|
+
net-protocol
|
107
|
+
nio4r (2.5.9)
|
108
|
+
nokogiri (1.15.1-arm64-darwin)
|
109
|
+
racc (~> 1.4)
|
110
|
+
pry (0.14.2)
|
111
|
+
coderay (~> 1.1)
|
112
|
+
method_source (~> 1.0)
|
113
|
+
racc (1.6.2)
|
114
|
+
rack (2.2.7)
|
115
|
+
rack-test (2.1.0)
|
116
|
+
rack (>= 1.3)
|
117
|
+
rails (6.1.7.3)
|
118
|
+
actioncable (= 6.1.7.3)
|
119
|
+
actionmailbox (= 6.1.7.3)
|
120
|
+
actionmailer (= 6.1.7.3)
|
121
|
+
actionpack (= 6.1.7.3)
|
122
|
+
actiontext (= 6.1.7.3)
|
123
|
+
actionview (= 6.1.7.3)
|
124
|
+
activejob (= 6.1.7.3)
|
125
|
+
activemodel (= 6.1.7.3)
|
126
|
+
activerecord (= 6.1.7.3)
|
127
|
+
activestorage (= 6.1.7.3)
|
128
|
+
activesupport (= 6.1.7.3)
|
129
|
+
bundler (>= 1.15.0)
|
130
|
+
railties (= 6.1.7.3)
|
131
|
+
sprockets-rails (>= 2.0.0)
|
132
|
+
rails-dom-testing (2.0.3)
|
133
|
+
activesupport (>= 4.2.0)
|
134
|
+
nokogiri (>= 1.6)
|
135
|
+
rails-html-sanitizer (1.5.0)
|
136
|
+
loofah (~> 2.19, >= 2.19.1)
|
137
|
+
railties (6.1.7.3)
|
138
|
+
actionpack (= 6.1.7.3)
|
139
|
+
activesupport (= 6.1.7.3)
|
140
|
+
method_source
|
141
|
+
rake (>= 12.2)
|
142
|
+
thor (~> 1.0)
|
143
|
+
rake (13.0.6)
|
144
|
+
sprockets (4.2.0)
|
145
|
+
concurrent-ruby (~> 1.0)
|
146
|
+
rack (>= 2.2.4, < 4)
|
147
|
+
sprockets-rails (3.4.2)
|
148
|
+
actionpack (>= 5.2)
|
149
|
+
activesupport (>= 5.2)
|
150
|
+
sprockets (>= 3.0.0)
|
151
|
+
sqlite3 (1.6.3-arm64-darwin)
|
152
|
+
thor (1.2.2)
|
153
|
+
timeout (0.3.2)
|
154
|
+
tzinfo (2.0.6)
|
155
|
+
concurrent-ruby (~> 1.0)
|
156
|
+
websocket-driver (0.7.5)
|
157
|
+
websocket-extensions (>= 0.1.0)
|
158
|
+
websocket-extensions (0.1.5)
|
159
|
+
zeitwerk (2.6.8)
|
160
|
+
|
161
|
+
PLATFORMS
|
162
|
+
arm64-darwin-22
|
163
|
+
|
164
|
+
DEPENDENCIES
|
165
|
+
appraisal
|
166
|
+
minitest
|
167
|
+
minitest-focus
|
168
|
+
minitest-spec-rails!
|
169
|
+
pry
|
170
|
+
rails (~> 6.1.0)
|
171
|
+
rake
|
172
|
+
sqlite3
|
173
|
+
|
174
|
+
BUNDLED WITH
|
175
|
+
2.4.12
|