miau 1.0.3 → 1.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/rake.yml +1 -1
  3. data/.gitignore +7 -4
  4. data/.ruby-version +1 -1
  5. data/Gemfile +5 -3
  6. data/Gemfile.lock +190 -18
  7. data/LICENSE +1 -1
  8. data/README.md +35 -17
  9. data/Rakefile +4 -6
  10. data/gemfiles/rails_6.1.gemfile +3 -2
  11. data/gemfiles/rails_7.0.gemfile +3 -2
  12. data/gemfiles/rails_7.1.gemfile +3 -2
  13. data/lib/miau/application_policy.rb +3 -2
  14. data/lib/miau/error.rb +3 -0
  15. data/lib/miau/run.rb +48 -0
  16. data/lib/miau/storage.rb +18 -52
  17. data/lib/miau/version.rb +4 -1
  18. data/lib/miau.rb +28 -19
  19. data/miau.gemspec +6 -9
  20. data/test/authorization_test.rb +28 -0
  21. data/test/benchmark_test.rb +34 -0
  22. data/test/controller_test.rb +58 -0
  23. data/test/controllers/orders_controller_test.rb +47 -0
  24. data/test/internal/app/controllers/application_controller.rb +7 -0
  25. data/test/internal/app/controllers/orders_controller.rb +61 -0
  26. data/test/internal/app/controllers/posts_controller.rb +10 -0
  27. data/test/internal/app/models/application_record.rb +3 -0
  28. data/test/internal/app/models/order.rb +2 -0
  29. data/test/internal/app/models/post.rb +2 -0
  30. data/test/internal/app/policies/orders_policy.rb +16 -0
  31. data/test/internal/app/policies/posts_policy.rb +18 -0
  32. data/test/internal/app/views/orders/new.html.erb +5 -0
  33. data/test/internal/config/database.yml +3 -0
  34. data/test/internal/config/routes.rb +3 -0
  35. data/test/internal/db/migrate/20141016161801_create_orders.rb +10 -0
  36. data/test/internal/db/schema.rb +8 -0
  37. data/test/miau_test.rb +46 -0
  38. data/test/run_test.rb +69 -0
  39. data/test/storage_test.rb +51 -0
  40. data/test/test_helper.rb +17 -0
  41. metadata +33 -14
  42. data/gemfiles/rails_6.1.gemfile.lock +0 -224
  43. data/gemfiles/rails_7.0.gemfile.lock +0 -256
  44. data/gemfiles/rails_7.1.gemfile.lock +0 -254
metadata CHANGED
@@ -1,23 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: miau
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-13 00:00:00.000000000 Z
11
+ date: 2024-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: activesupport
14
+ name: appraisal
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
- type: :runtime
20
+ type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
@@ -25,7 +25,7 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: rake
28
+ name: combustion
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: appraisal
42
+ name: minitest
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
@@ -53,7 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: minitest
56
+ name: ricecream
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
@@ -67,7 +67,7 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: ricecream
70
+ name: sqlite3
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
@@ -81,8 +81,8 @@ dependencies:
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  description: |
84
- MIAU (MIcro AUthorization) provides a set of helpers which restricts what
85
- resources a given user is allowed to access.
84
+ MIAU (MIcro AUthorization) provides some helpers which
85
+ raises an exception if a given user violates a policy.
86
86
  email: dittmar.krall@matiq.com
87
87
  executables: []
88
88
  extensions: []
@@ -99,17 +99,36 @@ files:
99
99
  - README.md
100
100
  - Rakefile
101
101
  - gemfiles/rails_6.1.gemfile
102
- - gemfiles/rails_6.1.gemfile.lock
103
102
  - gemfiles/rails_7.0.gemfile
104
- - gemfiles/rails_7.0.gemfile.lock
105
103
  - gemfiles/rails_7.1.gemfile
106
- - gemfiles/rails_7.1.gemfile.lock
107
104
  - lib/miau.rb
108
105
  - lib/miau/application_policy.rb
109
106
  - lib/miau/error.rb
107
+ - lib/miau/run.rb
110
108
  - lib/miau/storage.rb
111
109
  - lib/miau/version.rb
112
110
  - miau.gemspec
111
+ - test/authorization_test.rb
112
+ - test/benchmark_test.rb
113
+ - test/controller_test.rb
114
+ - test/controllers/orders_controller_test.rb
115
+ - test/internal/app/controllers/application_controller.rb
116
+ - test/internal/app/controllers/orders_controller.rb
117
+ - test/internal/app/controllers/posts_controller.rb
118
+ - test/internal/app/models/application_record.rb
119
+ - test/internal/app/models/order.rb
120
+ - test/internal/app/models/post.rb
121
+ - test/internal/app/policies/orders_policy.rb
122
+ - test/internal/app/policies/posts_policy.rb
123
+ - test/internal/app/views/orders/new.html.erb
124
+ - test/internal/config/database.yml
125
+ - test/internal/config/routes.rb
126
+ - test/internal/db/migrate/20141016161801_create_orders.rb
127
+ - test/internal/db/schema.rb
128
+ - test/miau_test.rb
129
+ - test/run_test.rb
130
+ - test/storage_test.rb
131
+ - test/test_helper.rb
113
132
  homepage: https://github.com/matique/miau
114
133
  licenses:
115
134
  - MIT
@@ -129,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
148
  - !ruby/object:Gem::Version
130
149
  version: '0'
131
150
  requirements: []
132
- rubygems_version: 3.4.20
151
+ rubygems_version: 3.5.3
133
152
  signing_key:
134
153
  specification_version: 4
135
154
  summary: Simple and lightweight authorization solution for Rails.
@@ -1,224 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- miau (1.0.2)
5
- activesupport
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (6.1.7.6)
11
- actionpack (= 6.1.7.6)
12
- activesupport (= 6.1.7.6)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailbox (6.1.7.6)
16
- actionpack (= 6.1.7.6)
17
- activejob (= 6.1.7.6)
18
- activerecord (= 6.1.7.6)
19
- activestorage (= 6.1.7.6)
20
- activesupport (= 6.1.7.6)
21
- mail (>= 2.7.1)
22
- actionmailer (6.1.7.6)
23
- actionpack (= 6.1.7.6)
24
- actionview (= 6.1.7.6)
25
- activejob (= 6.1.7.6)
26
- activesupport (= 6.1.7.6)
27
- mail (~> 2.5, >= 2.5.4)
28
- rails-dom-testing (~> 2.0)
29
- actionpack (6.1.7.6)
30
- actionview (= 6.1.7.6)
31
- activesupport (= 6.1.7.6)
32
- rack (~> 2.0, >= 2.0.9)
33
- rack-test (>= 0.6.3)
34
- rails-dom-testing (~> 2.0)
35
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
- actiontext (6.1.7.6)
37
- actionpack (= 6.1.7.6)
38
- activerecord (= 6.1.7.6)
39
- activestorage (= 6.1.7.6)
40
- activesupport (= 6.1.7.6)
41
- nokogiri (>= 1.8.5)
42
- actionview (6.1.7.6)
43
- activesupport (= 6.1.7.6)
44
- builder (~> 3.1)
45
- erubi (~> 1.4)
46
- rails-dom-testing (~> 2.0)
47
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
- activejob (6.1.7.6)
49
- activesupport (= 6.1.7.6)
50
- globalid (>= 0.3.6)
51
- activemodel (6.1.7.6)
52
- activesupport (= 6.1.7.6)
53
- activerecord (6.1.7.6)
54
- activemodel (= 6.1.7.6)
55
- activesupport (= 6.1.7.6)
56
- activestorage (6.1.7.6)
57
- actionpack (= 6.1.7.6)
58
- activejob (= 6.1.7.6)
59
- activerecord (= 6.1.7.6)
60
- activesupport (= 6.1.7.6)
61
- marcel (~> 1.0)
62
- mini_mime (>= 1.1.0)
63
- activesupport (6.1.7.6)
64
- concurrent-ruby (~> 1.0, >= 1.0.2)
65
- i18n (>= 1.6, < 2)
66
- minitest (>= 5.1)
67
- tzinfo (~> 2.0)
68
- zeitwerk (~> 2.3)
69
- appraisal (2.5.0)
70
- bundler
71
- rake
72
- thor (>= 0.14.0)
73
- ast (2.4.2)
74
- benchmark-ips (2.13.0)
75
- builder (3.2.4)
76
- concurrent-ruby (1.2.2)
77
- crass (1.0.6)
78
- date (3.3.4)
79
- docile (1.4.0)
80
- dryer-config (6.1.4)
81
- erubi (1.12.0)
82
- globalid (1.2.1)
83
- activesupport (>= 6.1)
84
- i18n (1.14.1)
85
- concurrent-ruby (~> 1.0)
86
- json (2.7.1)
87
- language_server-protocol (3.17.0.3)
88
- lint_roller (1.1.0)
89
- loofah (2.22.0)
90
- crass (~> 1.0.2)
91
- nokogiri (>= 1.12.0)
92
- mail (2.8.1)
93
- mini_mime (>= 0.1.1)
94
- net-imap
95
- net-pop
96
- net-smtp
97
- marcel (1.0.2)
98
- method_source (1.0.0)
99
- mini_mime (1.1.5)
100
- minitest (5.20.0)
101
- net-imap (0.4.8)
102
- date
103
- net-protocol
104
- net-pop (0.1.2)
105
- net-protocol
106
- net-protocol (0.2.2)
107
- timeout
108
- net-smtp (0.4.0)
109
- net-protocol
110
- nio4r (2.7.0)
111
- nokogiri (1.15.5-x86_64-linux)
112
- racc (~> 1.4)
113
- observr (1.0.5)
114
- parallel (1.23.0)
115
- parser (3.2.2.4)
116
- ast (~> 2.4.1)
117
- racc
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
- regexp_parser (2.8.3)
153
- rexml (3.2.6)
154
- ricecream (0.2.1)
155
- rubocop (1.57.2)
156
- json (~> 2.3)
157
- language_server-protocol (>= 3.17.0)
158
- parallel (~> 1.10)
159
- parser (>= 3.2.2.4)
160
- rainbow (>= 2.2.2, < 4.0)
161
- regexp_parser (>= 1.8, < 3.0)
162
- rexml (>= 3.2.5, < 4.0)
163
- rubocop-ast (>= 1.28.1, < 2.0)
164
- ruby-progressbar (~> 1.7)
165
- unicode-display_width (>= 2.4.0, < 3.0)
166
- rubocop-ast (1.30.0)
167
- parser (>= 3.2.1.0)
168
- rubocop-performance (1.19.1)
169
- rubocop (>= 1.7.0, < 2.0)
170
- rubocop-ast (>= 0.4.0)
171
- ruby-progressbar (1.13.0)
172
- simplecov (0.22.0)
173
- docile (~> 1.1)
174
- simplecov-html (~> 0.11)
175
- simplecov_json_formatter (~> 0.1)
176
- simplecov-html (0.12.3)
177
- simplecov_json_formatter (0.1.4)
178
- sprockets (4.2.1)
179
- concurrent-ruby (~> 1.0)
180
- rack (>= 2.2.4, < 4)
181
- sprockets-rails (3.4.2)
182
- actionpack (>= 5.2)
183
- activesupport (>= 5.2)
184
- sprockets (>= 3.0.0)
185
- standard (1.32.1)
186
- language_server-protocol (~> 3.17.0.2)
187
- lint_roller (~> 1.0)
188
- rubocop (~> 1.57.2)
189
- standard-custom (~> 1.0.0)
190
- standard-performance (~> 1.2)
191
- standard-custom (1.0.2)
192
- lint_roller (~> 1.0)
193
- rubocop (~> 1.50)
194
- standard-performance (1.2.1)
195
- lint_roller (~> 1.1)
196
- rubocop-performance (~> 1.19.1)
197
- thor (1.3.0)
198
- timeout (0.4.1)
199
- tzinfo (2.0.6)
200
- concurrent-ruby (~> 1.0)
201
- unicode-display_width (2.5.0)
202
- websocket-driver (0.7.6)
203
- websocket-extensions (>= 0.1.0)
204
- websocket-extensions (0.1.5)
205
- zeitwerk (2.6.12)
206
-
207
- PLATFORMS
208
- x86_64-linux
209
-
210
- DEPENDENCIES
211
- appraisal
212
- benchmark-ips
213
- dryer-config (~> 6.0)
214
- miau!
215
- minitest
216
- observr
217
- rails (~> 6.1)
218
- rake
219
- ricecream
220
- simplecov
221
- standard
222
-
223
- BUNDLED WITH
224
- 2.4.22
@@ -1,256 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- miau (1.0.2)
5
- activesupport
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (7.1.2)
11
- actionpack (= 7.1.2)
12
- activesupport (= 7.1.2)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- zeitwerk (~> 2.6)
16
- actionmailbox (7.1.2)
17
- actionpack (= 7.1.2)
18
- activejob (= 7.1.2)
19
- activerecord (= 7.1.2)
20
- activestorage (= 7.1.2)
21
- activesupport (= 7.1.2)
22
- mail (>= 2.7.1)
23
- net-imap
24
- net-pop
25
- net-smtp
26
- actionmailer (7.1.2)
27
- actionpack (= 7.1.2)
28
- actionview (= 7.1.2)
29
- activejob (= 7.1.2)
30
- activesupport (= 7.1.2)
31
- mail (~> 2.5, >= 2.5.4)
32
- net-imap
33
- net-pop
34
- net-smtp
35
- rails-dom-testing (~> 2.2)
36
- actionpack (7.1.2)
37
- actionview (= 7.1.2)
38
- activesupport (= 7.1.2)
39
- nokogiri (>= 1.8.5)
40
- racc
41
- rack (>= 2.2.4)
42
- rack-session (>= 1.0.1)
43
- rack-test (>= 0.6.3)
44
- rails-dom-testing (~> 2.2)
45
- rails-html-sanitizer (~> 1.6)
46
- actiontext (7.1.2)
47
- actionpack (= 7.1.2)
48
- activerecord (= 7.1.2)
49
- activestorage (= 7.1.2)
50
- activesupport (= 7.1.2)
51
- globalid (>= 0.6.0)
52
- nokogiri (>= 1.8.5)
53
- actionview (7.1.2)
54
- activesupport (= 7.1.2)
55
- builder (~> 3.1)
56
- erubi (~> 1.11)
57
- rails-dom-testing (~> 2.2)
58
- rails-html-sanitizer (~> 1.6)
59
- activejob (7.1.2)
60
- activesupport (= 7.1.2)
61
- globalid (>= 0.3.6)
62
- activemodel (7.1.2)
63
- activesupport (= 7.1.2)
64
- activerecord (7.1.2)
65
- activemodel (= 7.1.2)
66
- activesupport (= 7.1.2)
67
- timeout (>= 0.4.0)
68
- activestorage (7.1.2)
69
- actionpack (= 7.1.2)
70
- activejob (= 7.1.2)
71
- activerecord (= 7.1.2)
72
- activesupport (= 7.1.2)
73
- marcel (~> 1.0)
74
- activesupport (7.1.2)
75
- base64
76
- bigdecimal
77
- concurrent-ruby (~> 1.0, >= 1.0.2)
78
- connection_pool (>= 2.2.5)
79
- drb
80
- i18n (>= 1.6, < 2)
81
- minitest (>= 5.1)
82
- mutex_m
83
- tzinfo (~> 2.0)
84
- appraisal (2.5.0)
85
- bundler
86
- rake
87
- thor (>= 0.14.0)
88
- ast (2.4.2)
89
- base64 (0.2.0)
90
- benchmark-ips (2.13.0)
91
- bigdecimal (3.1.5)
92
- builder (3.2.4)
93
- concurrent-ruby (1.2.2)
94
- connection_pool (2.4.1)
95
- crass (1.0.6)
96
- date (3.3.4)
97
- docile (1.4.0)
98
- drb (2.2.0)
99
- ruby2_keywords
100
- dryer-config (7.1.0)
101
- erubi (1.12.0)
102
- globalid (1.2.1)
103
- activesupport (>= 6.1)
104
- i18n (1.14.1)
105
- concurrent-ruby (~> 1.0)
106
- io-console (0.7.0)
107
- irb (1.10.1)
108
- rdoc
109
- reline (>= 0.3.8)
110
- json (2.7.1)
111
- language_server-protocol (3.17.0.3)
112
- lint_roller (1.1.0)
113
- loofah (2.22.0)
114
- crass (~> 1.0.2)
115
- nokogiri (>= 1.12.0)
116
- mail (2.8.1)
117
- mini_mime (>= 0.1.1)
118
- net-imap
119
- net-pop
120
- net-smtp
121
- marcel (1.0.2)
122
- mini_mime (1.1.5)
123
- minitest (5.20.0)
124
- mutex_m (0.2.0)
125
- net-imap (0.4.8)
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)
133
- net-protocol
134
- nio4r (2.7.0)
135
- nokogiri (1.15.5-x86_64-linux)
136
- racc (~> 1.4)
137
- observr (1.0.5)
138
- parallel (1.23.0)
139
- parser (3.2.2.4)
140
- ast (~> 2.4.1)
141
- racc
142
- psych (5.1.1.1)
143
- stringio
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.2)
154
- actioncable (= 7.1.2)
155
- actionmailbox (= 7.1.2)
156
- actionmailer (= 7.1.2)
157
- actionpack (= 7.1.2)
158
- actiontext (= 7.1.2)
159
- actionview (= 7.1.2)
160
- activejob (= 7.1.2)
161
- activemodel (= 7.1.2)
162
- activerecord (= 7.1.2)
163
- activestorage (= 7.1.2)
164
- activesupport (= 7.1.2)
165
- bundler (>= 1.15.0)
166
- railties (= 7.1.2)
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.2)
175
- actionpack (= 7.1.2)
176
- activesupport (= 7.1.2)
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)
183
- rake (13.1.0)
184
- rdoc (6.6.1)
185
- psych (>= 4.0.0)
186
- regexp_parser (2.8.3)
187
- reline (0.4.1)
188
- io-console (~> 0.5)
189
- rexml (3.2.6)
190
- ricecream (0.2.1)
191
- rubocop (1.57.2)
192
- json (~> 2.3)
193
- language_server-protocol (>= 3.17.0)
194
- parallel (~> 1.10)
195
- parser (>= 3.2.2.4)
196
- rainbow (>= 2.2.2, < 4.0)
197
- regexp_parser (>= 1.8, < 3.0)
198
- rexml (>= 3.2.5, < 4.0)
199
- rubocop-ast (>= 1.28.1, < 2.0)
200
- ruby-progressbar (~> 1.7)
201
- unicode-display_width (>= 2.4.0, < 3.0)
202
- rubocop-ast (1.30.0)
203
- parser (>= 3.2.1.0)
204
- rubocop-performance (1.19.1)
205
- rubocop (>= 1.7.0, < 2.0)
206
- rubocop-ast (>= 0.4.0)
207
- ruby-progressbar (1.13.0)
208
- ruby2_keywords (0.0.5)
209
- simplecov (0.22.0)
210
- docile (~> 1.1)
211
- simplecov-html (~> 0.11)
212
- simplecov_json_formatter (~> 0.1)
213
- simplecov-html (0.12.3)
214
- simplecov_json_formatter (0.1.4)
215
- standard (1.32.1)
216
- language_server-protocol (~> 3.17.0.2)
217
- lint_roller (~> 1.0)
218
- rubocop (~> 1.57.2)
219
- standard-custom (~> 1.0.0)
220
- standard-performance (~> 1.2)
221
- standard-custom (1.0.2)
222
- lint_roller (~> 1.0)
223
- rubocop (~> 1.50)
224
- standard-performance (1.2.1)
225
- lint_roller (~> 1.1)
226
- rubocop-performance (~> 1.19.1)
227
- stringio (3.1.0)
228
- thor (1.3.0)
229
- timeout (0.4.1)
230
- tzinfo (2.0.6)
231
- concurrent-ruby (~> 1.0)
232
- unicode-display_width (2.5.0)
233
- webrick (1.8.1)
234
- websocket-driver (0.7.6)
235
- websocket-extensions (>= 0.1.0)
236
- websocket-extensions (0.1.5)
237
- zeitwerk (2.6.12)
238
-
239
- PLATFORMS
240
- x86_64-linux
241
-
242
- DEPENDENCIES
243
- appraisal
244
- benchmark-ips
245
- dryer-config (~> 7.0)
246
- miau!
247
- minitest
248
- observr
249
- rails (~> 7.0)
250
- rake
251
- ricecream
252
- simplecov
253
- standard
254
-
255
- BUNDLED WITH
256
- 2.4.22