minitest-spec-rails 6.1.0 → 7.0.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.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +8 -7
  3. data/Appraisals +5 -12
  4. data/CHANGELOG.md +11 -0
  5. data/README.md +11 -11
  6. data/gemfiles/rails_v6.0.x.gemfile.lock +107 -87
  7. data/gemfiles/{rails_v5.2.x.gemfile → rails_v6.1.x.gemfile} +1 -1
  8. data/gemfiles/rails_v6.1.x.gemfile.lock +175 -0
  9. data/gemfiles/rails_v7.0.x.gemfile +1 -2
  10. data/gemfiles/rails_v7.0.x.gemfile.lock +174 -0
  11. data/gemfiles/rails_v7.1.x.gemfile +9 -0
  12. data/lib/minitest-spec-rails/init/action_cable.rb +25 -0
  13. data/lib/minitest-spec-rails/init/action_view.rb +1 -3
  14. data/lib/minitest-spec-rails/railtie.rb +23 -22
  15. data/lib/minitest-spec-rails/version.rb +1 -1
  16. data/minitest-spec-rails.gemspec +2 -0
  17. data/test/cases/action_cable_test.rb +38 -0
  18. data/test/cases/active_support_test.rb +3 -3
  19. data/test/cases/mini_shoulda_test.rb +3 -3
  20. data/test/dummy_app/app/channels/application_cable/channel.rb +4 -0
  21. data/test/dummy_app/app/channels/application_cable/connection.rb +4 -0
  22. data/test/dummy_app/init.rb +5 -12
  23. data/test/dummy_app/tmp/development_secret.txt +1 -0
  24. data/test/dummy_tests/application_controller_test.rb +18 -18
  25. data/test/dummy_tests/foos_helper_test.rb +2 -2
  26. data/test/dummy_tests/integration_test.rb +3 -3
  27. data/test/dummy_tests/library_test.rb +3 -3
  28. data/test/dummy_tests/user_mailer_test.rb +20 -21
  29. data/test/dummy_tests/user_test.rb +15 -15
  30. data/test/dummy_tests/users_controller_test.rb +1 -1
  31. data/test/dummy_tests/users_helper_test.rb +15 -15
  32. data/test/support/shared_test_case_behavior.rb +0 -4
  33. metadata +47 -10
  34. data/gemfiles/rails_v5.1.x.gemfile +0 -8
  35. data/gemfiles/rails_v5.1.x.gemfile.lock +0 -130
  36. data/gemfiles/rails_v5.2.x.gemfile.lock +0 -136
@@ -4,11 +4,11 @@ module UserTests
4
4
  extend ActiveSupport::Concern
5
5
  included do
6
6
  it 'works' do
7
- user_ken.must_be_instance_of User
7
+ expect(user_ken).must_be_instance_of User
8
8
  end
9
9
 
10
10
  test 'works with test' do
11
- user_ken.must_be_instance_of User
11
+ expect(user_ken).must_be_instance_of User
12
12
  end
13
13
 
14
14
  it 'allows custom assertions' do
@@ -23,7 +23,7 @@ module UserTests
23
23
  end
24
24
 
25
25
  test 'works with test' do
26
- user_ken.must_be_instance_of User
26
+ expect(user_ken).must_be_instance_of User
27
27
  end
28
28
  end
29
29
  end
@@ -32,18 +32,18 @@ end
32
32
  class UserTest < ActiveSupport::TestCase
33
33
  include UserTests
34
34
  it 'reflects' do
35
- described_class.must_equal User
36
- self.class.described_class.must_equal User
35
+ expect(described_class).must_equal User
36
+ expect(self.class.described_class).must_equal User
37
37
  end
38
38
  describe 'level 1' do
39
39
  it 'reflects' do
40
- described_class.must_equal User
41
- self.class.described_class.must_equal User
40
+ expect(described_class).must_equal User
41
+ expect(self.class.described_class).must_equal User
42
42
  end
43
43
  describe 'level 2' do
44
44
  it 'reflects' do
45
- described_class.must_equal User
46
- self.class.described_class.must_equal User
45
+ expect(described_class).must_equal User
46
+ expect(self.class.described_class).must_equal User
47
47
  end
48
48
  end
49
49
  end
@@ -52,18 +52,18 @@ end
52
52
  describe User do
53
53
  include UserTests
54
54
  it 'reflects' do
55
- described_class.must_equal User
56
- self.class.described_class.must_equal User
55
+ expect(described_class).must_equal User
56
+ expect(self.class.described_class).must_equal User
57
57
  end
58
58
  describe 'level 1' do
59
59
  it 'reflects' do
60
- described_class.must_equal User
61
- self.class.described_class.must_equal User
60
+ expect(described_class).must_equal User
61
+ expect(self.class.described_class).must_equal User
62
62
  end
63
63
  describe 'level 2' do
64
64
  it 'reflects' do
65
- described_class.must_equal User
66
- self.class.described_class.must_equal User
65
+ expect(described_class).must_equal User
66
+ expect(self.class.described_class).must_equal User
67
67
  end
68
68
  end
69
69
  end
@@ -16,7 +16,7 @@ module UsersControllerTests
16
16
  private
17
17
 
18
18
  def put_update_0
19
- rails5? ? put(:update, params: { id: 0 }) : put(:update, id: 0)
19
+ put :update, params: { id: 0 }
20
20
  end
21
21
  end
22
22
  end
@@ -9,18 +9,18 @@ module UsersHelperTests
9
9
 
10
10
  it 'works' do
11
11
  user_ken
12
- users_list.must_equal "<ul><li>#{user_ken.email}</li></ul>"
12
+ expect(users_list).must_equal "<ul><li>#{user_ken.email}</li></ul>"
13
13
  end
14
14
 
15
15
  it 'can find the helper_class' do
16
- self.class.helper_class.must_equal UsersHelper
16
+ expect(self.class.helper_class).must_equal UsersHelper
17
17
  end
18
18
 
19
19
  describe 'nested 1' do
20
20
  it('works') { skip }
21
21
 
22
22
  it 'can find the helper_class' do
23
- self.class.helper_class.must_equal UsersHelper
23
+ expect(self.class.helper_class).must_equal UsersHelper
24
24
  end
25
25
 
26
26
  describe 'nested 2' do
@@ -33,18 +33,18 @@ end
33
33
  class UsersHelperTest < ActionView::TestCase
34
34
  include UsersHelperTests
35
35
  it 'reflects' do
36
- described_class.must_equal UsersHelper
37
- self.class.described_class.must_equal UsersHelper
36
+ expect(described_class).must_equal UsersHelper
37
+ expect(self.class.described_class).must_equal UsersHelper
38
38
  end
39
39
  describe 'level 1' do
40
40
  it 'reflects' do
41
- described_class.must_equal UsersHelper
42
- self.class.described_class.must_equal UsersHelper
41
+ expect(described_class).must_equal UsersHelper
42
+ expect(self.class.described_class).must_equal UsersHelper
43
43
  end
44
44
  describe 'level 2' do
45
45
  it 'reflects' do
46
- described_class.must_equal UsersHelper
47
- self.class.described_class.must_equal UsersHelper
46
+ expect(described_class).must_equal UsersHelper
47
+ expect(self.class.described_class).must_equal UsersHelper
48
48
  end
49
49
  end
50
50
  end
@@ -53,18 +53,18 @@ end
53
53
  describe UsersHelper do
54
54
  include UsersHelperTests
55
55
  it 'reflects' do
56
- described_class.must_equal UsersHelper
57
- self.class.described_class.must_equal UsersHelper
56
+ expect(described_class).must_equal UsersHelper
57
+ expect(self.class.described_class).must_equal UsersHelper
58
58
  end
59
59
  describe 'level 1' do
60
60
  it 'reflects' do
61
- described_class.must_equal UsersHelper
62
- self.class.described_class.must_equal UsersHelper
61
+ expect(described_class).must_equal UsersHelper
62
+ expect(self.class.described_class).must_equal UsersHelper
63
63
  end
64
64
  describe 'level 2' do
65
65
  it 'reflects' do
66
- described_class.must_equal UsersHelper
67
- self.class.described_class.must_equal UsersHelper
66
+ expect(described_class).must_equal UsersHelper
67
+ expect(self.class.described_class).must_equal UsersHelper
68
68
  end
69
69
  end
70
70
  end
@@ -11,10 +11,6 @@ module MiniTestSpecRails
11
11
 
12
12
  private
13
13
 
14
- def rails5?
15
- Rails.version >= '5.0'
16
- end
17
-
18
14
  def setup_dummy_schema
19
15
  ActiveRecord::Base.class_eval do
20
16
  connection.instance_eval do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-spec-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-02 00:00:00.000000000 Z
11
+ date: 2023-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -52,6 +52,34 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest-focus
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
55
83
  - !ruby/object:Gem::Dependency
56
84
  name: rake
57
85
  requirement: !ruby/object:Gem::Requirement
@@ -99,15 +127,16 @@ files:
99
127
  - MIT-LICENSE
100
128
  - README.md
101
129
  - Rakefile
102
- - gemfiles/rails_v5.1.x.gemfile
103
- - gemfiles/rails_v5.1.x.gemfile.lock
104
- - gemfiles/rails_v5.2.x.gemfile
105
- - gemfiles/rails_v5.2.x.gemfile.lock
106
130
  - gemfiles/rails_v6.0.x.gemfile
107
131
  - gemfiles/rails_v6.0.x.gemfile.lock
132
+ - gemfiles/rails_v6.1.x.gemfile
133
+ - gemfiles/rails_v6.1.x.gemfile.lock
108
134
  - gemfiles/rails_v7.0.x.gemfile
135
+ - gemfiles/rails_v7.0.x.gemfile.lock
136
+ - gemfiles/rails_v7.1.x.gemfile
109
137
  - lib/minitest-spec-rails.rb
110
138
  - lib/minitest-spec-rails/dsl.rb
139
+ - lib/minitest-spec-rails/init/action_cable.rb
111
140
  - lib/minitest-spec-rails/init/action_controller.rb
112
141
  - lib/minitest-spec-rails/init/action_dispatch.rb
113
142
  - lib/minitest-spec-rails/init/action_mailer.rb
@@ -119,6 +148,7 @@ files:
119
148
  - lib/minitest-spec-rails/railtie.rb
120
149
  - lib/minitest-spec-rails/version.rb
121
150
  - minitest-spec-rails.gemspec
151
+ - test/cases/action_cable_test.rb
122
152
  - test/cases/action_controller_test.rb
123
153
  - test/cases/action_dispatch_test.rb
124
154
  - test/cases/action_mailer_test.rb
@@ -127,6 +157,8 @@ files:
127
157
  - test/cases/active_support_test.rb
128
158
  - test/cases/mini_shoulda_test.rb
129
159
  - test/dummy_app/app/assets/config/manifest.js
160
+ - test/dummy_app/app/channels/application_cable/channel.rb
161
+ - test/dummy_app/app/channels/application_cable/connection.rb
130
162
  - test/dummy_app/app/controllers/application_controller.rb
131
163
  - test/dummy_app/app/controllers/users_controller.rb
132
164
  - test/dummy_app/app/helpers/application_helper.rb
@@ -142,6 +174,7 @@ files:
142
174
  - test/dummy_app/init.rb
143
175
  - test/dummy_app/lib/library.rb
144
176
  - test/dummy_app/tmp/.gitkeep
177
+ - test/dummy_app/tmp/development_secret.txt
145
178
  - test/dummy_tests/application_controller_test.rb
146
179
  - test/dummy_tests/foos_helper_test.rb
147
180
  - test/dummy_tests/integration_test.rb
@@ -158,7 +191,7 @@ homepage: http://github.com/metaskills/minitest-spec-rails
158
191
  licenses:
159
192
  - MIT
160
193
  metadata: {}
161
- post_install_message:
194
+ post_install_message:
162
195
  rdoc_options: []
163
196
  require_paths:
164
197
  - lib
@@ -173,11 +206,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
206
  - !ruby/object:Gem::Version
174
207
  version: '0'
175
208
  requirements: []
176
- rubygems_version: 3.1.4
177
- signing_key:
209
+ rubygems_version: 3.3.26
210
+ signing_key:
178
211
  specification_version: 4
179
212
  summary: Make Rails Use MiniTest::Spec!
180
213
  test_files:
214
+ - test/cases/action_cable_test.rb
181
215
  - test/cases/action_controller_test.rb
182
216
  - test/cases/action_dispatch_test.rb
183
217
  - test/cases/action_mailer_test.rb
@@ -186,6 +220,8 @@ test_files:
186
220
  - test/cases/active_support_test.rb
187
221
  - test/cases/mini_shoulda_test.rb
188
222
  - test/dummy_app/app/assets/config/manifest.js
223
+ - test/dummy_app/app/channels/application_cable/channel.rb
224
+ - test/dummy_app/app/channels/application_cable/connection.rb
189
225
  - test/dummy_app/app/controllers/application_controller.rb
190
226
  - test/dummy_app/app/controllers/users_controller.rb
191
227
  - test/dummy_app/app/helpers/application_helper.rb
@@ -201,6 +237,7 @@ test_files:
201
237
  - test/dummy_app/init.rb
202
238
  - test/dummy_app/lib/library.rb
203
239
  - test/dummy_app/tmp/.gitkeep
240
+ - test/dummy_app/tmp/development_secret.txt
204
241
  - test/dummy_tests/application_controller_test.rb
205
242
  - test/dummy_tests/foos_helper_test.rb
206
243
  - test/dummy_tests/integration_test.rb
@@ -1,8 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "~> 5.1.0"
6
- gem "minitest", "5.10.1"
7
-
8
- gemspec path: "../"
@@ -1,130 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- minitest-spec-rails (6.1.0)
5
- minitest (>= 5.0)
6
- railties (>= 4.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.1.7)
12
- actionpack (= 5.1.7)
13
- nio4r (~> 2.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.7)
16
- actionpack (= 5.1.7)
17
- actionview (= 5.1.7)
18
- activejob (= 5.1.7)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.1.7)
22
- actionview (= 5.1.7)
23
- activesupport (= 5.1.7)
24
- rack (~> 2.0)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.7)
29
- activesupport (= 5.1.7)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.7)
35
- activesupport (= 5.1.7)
36
- globalid (>= 0.3.6)
37
- activemodel (5.1.7)
38
- activesupport (= 5.1.7)
39
- activerecord (5.1.7)
40
- activemodel (= 5.1.7)
41
- activesupport (= 5.1.7)
42
- arel (~> 8.0)
43
- activesupport (5.1.7)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (>= 0.7, < 2)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- appraisal (2.4.0)
49
- bundler
50
- rake
51
- thor (>= 0.14.0)
52
- arel (8.0.0)
53
- builder (3.2.4)
54
- concurrent-ruby (1.1.8)
55
- crass (1.0.6)
56
- erubi (1.10.0)
57
- globalid (0.4.2)
58
- activesupport (>= 4.2.0)
59
- i18n (1.8.10)
60
- concurrent-ruby (~> 1.0)
61
- loofah (2.9.1)
62
- crass (~> 1.0.2)
63
- nokogiri (>= 1.5.9)
64
- mail (2.7.1)
65
- mini_mime (>= 0.1.1)
66
- method_source (1.0.0)
67
- mini_mime (1.1.0)
68
- mini_portile2 (2.5.1)
69
- minitest (5.10.1)
70
- nio4r (2.5.7)
71
- nokogiri (1.11.3)
72
- mini_portile2 (~> 2.5.0)
73
- racc (~> 1.4)
74
- racc (1.5.2)
75
- rack (2.2.3)
76
- rack-test (1.1.0)
77
- rack (>= 1.0, < 3)
78
- rails (5.1.7)
79
- actioncable (= 5.1.7)
80
- actionmailer (= 5.1.7)
81
- actionpack (= 5.1.7)
82
- actionview (= 5.1.7)
83
- activejob (= 5.1.7)
84
- activemodel (= 5.1.7)
85
- activerecord (= 5.1.7)
86
- activesupport (= 5.1.7)
87
- bundler (>= 1.3.0)
88
- railties (= 5.1.7)
89
- sprockets-rails (>= 2.0.0)
90
- rails-dom-testing (2.0.3)
91
- activesupport (>= 4.2.0)
92
- nokogiri (>= 1.6)
93
- rails-html-sanitizer (1.3.0)
94
- loofah (~> 2.3)
95
- railties (5.1.7)
96
- actionpack (= 5.1.7)
97
- activesupport (= 5.1.7)
98
- method_source
99
- rake (>= 0.8.7)
100
- thor (>= 0.18.1, < 2.0)
101
- rake (13.0.3)
102
- sprockets (4.0.2)
103
- concurrent-ruby (~> 1.0)
104
- rack (> 1, < 3)
105
- sprockets-rails (3.2.2)
106
- actionpack (>= 4.0)
107
- activesupport (>= 4.0)
108
- sprockets (>= 3.0.0)
109
- sqlite3 (1.4.2)
110
- thor (1.1.0)
111
- thread_safe (0.3.6)
112
- tzinfo (1.2.9)
113
- thread_safe (~> 0.1)
114
- websocket-driver (0.6.5)
115
- websocket-extensions (>= 0.1.0)
116
- websocket-extensions (0.1.5)
117
-
118
- PLATFORMS
119
- ruby
120
-
121
- DEPENDENCIES
122
- appraisal
123
- minitest (= 5.10.1)
124
- minitest-spec-rails!
125
- rails (~> 5.1.0)
126
- rake
127
- sqlite3
128
-
129
- BUNDLED WITH
130
- 1.17.3
@@ -1,136 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- minitest-spec-rails (6.1.0)
5
- minitest (>= 5.0)
6
- railties (>= 4.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.2.5)
12
- actionpack (= 5.2.5)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.5)
16
- actionpack (= 5.2.5)
17
- actionview (= 5.2.5)
18
- activejob (= 5.2.5)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.2.5)
22
- actionview (= 5.2.5)
23
- activesupport (= 5.2.5)
24
- rack (~> 2.0, >= 2.0.8)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.5)
29
- activesupport (= 5.2.5)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.5)
35
- activesupport (= 5.2.5)
36
- globalid (>= 0.3.6)
37
- activemodel (5.2.5)
38
- activesupport (= 5.2.5)
39
- activerecord (5.2.5)
40
- activemodel (= 5.2.5)
41
- activesupport (= 5.2.5)
42
- arel (>= 9.0)
43
- activestorage (5.2.5)
44
- actionpack (= 5.2.5)
45
- activerecord (= 5.2.5)
46
- marcel (~> 1.0.0)
47
- activesupport (5.2.5)
48
- concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- appraisal (2.4.0)
53
- bundler
54
- rake
55
- thor (>= 0.14.0)
56
- arel (9.0.0)
57
- builder (3.2.4)
58
- concurrent-ruby (1.1.8)
59
- crass (1.0.6)
60
- erubi (1.10.0)
61
- globalid (0.4.2)
62
- activesupport (>= 4.2.0)
63
- i18n (1.8.10)
64
- concurrent-ruby (~> 1.0)
65
- loofah (2.9.1)
66
- crass (~> 1.0.2)
67
- nokogiri (>= 1.5.9)
68
- mail (2.7.1)
69
- mini_mime (>= 0.1.1)
70
- marcel (1.0.1)
71
- method_source (1.0.0)
72
- mini_mime (1.1.0)
73
- mini_portile2 (2.5.1)
74
- minitest (5.14.4)
75
- nio4r (2.5.7)
76
- nokogiri (1.11.3)
77
- mini_portile2 (~> 2.5.0)
78
- racc (~> 1.4)
79
- racc (1.5.2)
80
- rack (2.2.3)
81
- rack-test (1.1.0)
82
- rack (>= 1.0, < 3)
83
- rails (5.2.5)
84
- actioncable (= 5.2.5)
85
- actionmailer (= 5.2.5)
86
- actionpack (= 5.2.5)
87
- actionview (= 5.2.5)
88
- activejob (= 5.2.5)
89
- activemodel (= 5.2.5)
90
- activerecord (= 5.2.5)
91
- activestorage (= 5.2.5)
92
- activesupport (= 5.2.5)
93
- bundler (>= 1.3.0)
94
- railties (= 5.2.5)
95
- sprockets-rails (>= 2.0.0)
96
- rails-dom-testing (2.0.3)
97
- activesupport (>= 4.2.0)
98
- nokogiri (>= 1.6)
99
- rails-html-sanitizer (1.3.0)
100
- loofah (~> 2.3)
101
- railties (5.2.5)
102
- actionpack (= 5.2.5)
103
- activesupport (= 5.2.5)
104
- method_source
105
- rake (>= 0.8.7)
106
- thor (>= 0.19.0, < 2.0)
107
- rake (13.0.3)
108
- sprockets (4.0.2)
109
- concurrent-ruby (~> 1.0)
110
- rack (> 1, < 3)
111
- sprockets-rails (3.2.2)
112
- actionpack (>= 4.0)
113
- activesupport (>= 4.0)
114
- sprockets (>= 3.0.0)
115
- sqlite3 (1.4.2)
116
- thor (1.1.0)
117
- thread_safe (0.3.6)
118
- tzinfo (1.2.9)
119
- thread_safe (~> 0.1)
120
- websocket-driver (0.7.3)
121
- websocket-extensions (>= 0.1.0)
122
- websocket-extensions (0.1.5)
123
-
124
- PLATFORMS
125
- ruby
126
-
127
- DEPENDENCIES
128
- appraisal
129
- minitest
130
- minitest-spec-rails!
131
- rails (~> 5.2.0)
132
- rake
133
- sqlite3
134
-
135
- BUNDLED WITH
136
- 1.17.3