runger_actions 0.22.0 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a26c1638cc50e1292a2540f458f3e6fc782548b2564c9b18abe1ba1fa0371ba0
4
- data.tar.gz: 22f704d6aef4989a7576c8893136d5f4023d3d900b3a23138c1013ee57d81a98
3
+ metadata.gz: 6bdf1665b46c0e843590a517c367ea53b8b8660c0afbfb1fd9bb90dc6a630966
4
+ data.tar.gz: d4a413193496a13f0db9b657424eac68b2d7cc8d4cd5e1c07f9bb1bbabf9916a
5
5
  SHA512:
6
- metadata.gz: d9e5cabf05bba6e3d858574d508756368655248a008c883ab365205e1262435396cd0f44fb7a883af5ac5e020bf5eb5723562ba8f11460772331933145d2da5d
7
- data.tar.gz: 262849208cdbd3c2644487855a46fca87285defdd3a70f7ec9b2499c1c7434abf7d67718f469e92db45f0103a378e087c7dffeb5979f2b2dfa771b9db14951bf
6
+ metadata.gz: 6a2c2915d1c8b7b993280293b60e2572fd918adf517b428d85d342dbe4acbf5fe2dc17c61ddd0ad057c5f41ae2cc27e87bb2da1184e95ff9ad9f50d1a40be343
7
+ data.tar.gz: 794e9220f6f373ff9b50fb2bab2bc483dd59bc45ea607715dd45b905a8c0daf0d73f7ca97c288da49fe7f6c3fcce1b5faa3ec9925f80ae36debd2a77fe73c98b
@@ -1,9 +1,12 @@
1
+ ---
1
2
  version: 2
2
3
  updates:
3
- - package-ecosystem: bundler
4
- directory: "/"
5
- schedule:
6
- interval: daily
7
- time: "04:04"
8
- timezone: America/Chicago
9
- open-pull-requests-limit: 20
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: daily
8
+ time: "04:04"
9
+ timezone: America/Chicago
10
+ open-pull-requests-limit: 20
11
+ allow:
12
+ - dependency-type: all
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.3
1
+ 3.3.6
@@ -0,0 +1 @@
1
+ expected-num-github-checks: 3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v0.24.0 (2024-11-08)
2
+ - Remove upper bounds on versions for all dependencies
3
+
4
+ ## v0.23.0 (2024-09-05)
5
+ - Relaxed `shaped` gemspec requirement to `< 1.0`.
6
+
1
7
  ## v0.22.0 (2024-06-28)
2
8
  - Enforce only major and minor parts of required Ruby version (loosening the required Ruby version from 3.3.3 to 3.3.0)
3
9
 
data/Gemfile CHANGED
@@ -26,5 +26,5 @@ group :test do
26
26
  gem 'rspec', '~> 3.13'
27
27
  gem 'simplecov-cobertura', require: false
28
28
  gem 'simple_cov-formatter-terminal'
29
- gem 'sqlite3', '< 2.0.0'
29
+ gem 'sqlite3', '< 3.0.0'
30
30
  end
data/Gemfile.lock CHANGED
@@ -1,114 +1,113 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- runger_actions (0.22.0)
5
- memo_wise (>= 1.7, < 2)
6
- rails (>= 6, < 8)
7
- shaped (>= 0.9, < 0.13)
4
+ runger_actions (0.24.0)
5
+ memo_wise (>= 1.7)
6
+ rails (>= 6)
7
+ shaped (>= 0.9)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actioncable (7.1.3.4)
13
- actionpack (= 7.1.3.4)
14
- activesupport (= 7.1.3.4)
12
+ actioncable (7.2.2)
13
+ actionpack (= 7.2.2)
14
+ activesupport (= 7.2.2)
15
15
  nio4r (~> 2.0)
16
16
  websocket-driver (>= 0.6.1)
17
17
  zeitwerk (~> 2.6)
18
- actionmailbox (7.1.3.4)
19
- actionpack (= 7.1.3.4)
20
- activejob (= 7.1.3.4)
21
- activerecord (= 7.1.3.4)
22
- activestorage (= 7.1.3.4)
23
- activesupport (= 7.1.3.4)
24
- mail (>= 2.7.1)
25
- net-imap
26
- net-pop
27
- net-smtp
28
- actionmailer (7.1.3.4)
29
- actionpack (= 7.1.3.4)
30
- actionview (= 7.1.3.4)
31
- activejob (= 7.1.3.4)
32
- activesupport (= 7.1.3.4)
33
- mail (~> 2.5, >= 2.5.4)
34
- net-imap
35
- net-pop
36
- net-smtp
18
+ actionmailbox (7.2.2)
19
+ actionpack (= 7.2.2)
20
+ activejob (= 7.2.2)
21
+ activerecord (= 7.2.2)
22
+ activestorage (= 7.2.2)
23
+ activesupport (= 7.2.2)
24
+ mail (>= 2.8.0)
25
+ actionmailer (7.2.2)
26
+ actionpack (= 7.2.2)
27
+ actionview (= 7.2.2)
28
+ activejob (= 7.2.2)
29
+ activesupport (= 7.2.2)
30
+ mail (>= 2.8.0)
37
31
  rails-dom-testing (~> 2.2)
38
- actionpack (7.1.3.4)
39
- actionview (= 7.1.3.4)
40
- activesupport (= 7.1.3.4)
32
+ actionpack (7.2.2)
33
+ actionview (= 7.2.2)
34
+ activesupport (= 7.2.2)
41
35
  nokogiri (>= 1.8.5)
42
36
  racc
43
- rack (>= 2.2.4)
37
+ rack (>= 2.2.4, < 3.2)
44
38
  rack-session (>= 1.0.1)
45
39
  rack-test (>= 0.6.3)
46
40
  rails-dom-testing (~> 2.2)
47
41
  rails-html-sanitizer (~> 1.6)
48
- actiontext (7.1.3.4)
49
- actionpack (= 7.1.3.4)
50
- activerecord (= 7.1.3.4)
51
- activestorage (= 7.1.3.4)
52
- activesupport (= 7.1.3.4)
42
+ useragent (~> 0.16)
43
+ actiontext (7.2.2)
44
+ actionpack (= 7.2.2)
45
+ activerecord (= 7.2.2)
46
+ activestorage (= 7.2.2)
47
+ activesupport (= 7.2.2)
53
48
  globalid (>= 0.6.0)
54
49
  nokogiri (>= 1.8.5)
55
- actionview (7.1.3.4)
56
- activesupport (= 7.1.3.4)
50
+ actionview (7.2.2)
51
+ activesupport (= 7.2.2)
57
52
  builder (~> 3.1)
58
53
  erubi (~> 1.11)
59
54
  rails-dom-testing (~> 2.2)
60
55
  rails-html-sanitizer (~> 1.6)
61
- activejob (7.1.3.4)
62
- activesupport (= 7.1.3.4)
56
+ activejob (7.2.2)
57
+ activesupport (= 7.2.2)
63
58
  globalid (>= 0.3.6)
64
- activemodel (7.1.3.4)
65
- activesupport (= 7.1.3.4)
66
- activerecord (7.1.3.4)
67
- activemodel (= 7.1.3.4)
68
- activesupport (= 7.1.3.4)
59
+ activemodel (7.2.2)
60
+ activesupport (= 7.2.2)
61
+ activerecord (7.2.2)
62
+ activemodel (= 7.2.2)
63
+ activesupport (= 7.2.2)
69
64
  timeout (>= 0.4.0)
70
- activestorage (7.1.3.4)
71
- actionpack (= 7.1.3.4)
72
- activejob (= 7.1.3.4)
73
- activerecord (= 7.1.3.4)
74
- activesupport (= 7.1.3.4)
65
+ activestorage (7.2.2)
66
+ actionpack (= 7.2.2)
67
+ activejob (= 7.2.2)
68
+ activerecord (= 7.2.2)
69
+ activesupport (= 7.2.2)
75
70
  marcel (~> 1.0)
76
- activesupport (7.1.3.4)
71
+ activesupport (7.2.2)
77
72
  base64
73
+ benchmark (>= 0.3)
78
74
  bigdecimal
79
- concurrent-ruby (~> 1.0, >= 1.0.2)
75
+ concurrent-ruby (~> 1.0, >= 1.3.1)
80
76
  connection_pool (>= 2.2.5)
81
77
  drb
82
78
  i18n (>= 1.6, < 2)
79
+ logger (>= 1.4.2)
83
80
  minitest (>= 5.1)
84
- mutex_m
85
- tzinfo (~> 2.0)
81
+ securerandom (>= 0.3)
82
+ tzinfo (~> 2.0, >= 2.0.5)
86
83
  amazing_print (1.6.0)
87
84
  ast (2.4.2)
88
85
  base64 (0.2.0)
86
+ benchmark (0.4.0)
89
87
  bigdecimal (3.1.8)
90
88
  builder (3.3.0)
91
89
  byebug (11.1.3)
92
90
  coderay (1.1.3)
93
- concurrent-ruby (1.3.3)
91
+ concurrent-ruby (1.3.4)
94
92
  connection_pool (2.4.1)
95
93
  crass (1.0.6)
96
- date (3.3.4)
94
+ date (3.4.0)
97
95
  diff-lcs (1.5.1)
98
- docile (1.4.0)
96
+ docile (1.4.1)
99
97
  drb (2.2.1)
100
98
  erubi (1.13.0)
101
99
  globalid (1.2.1)
102
100
  activesupport (>= 6.1)
103
- i18n (1.14.5)
101
+ i18n (1.14.6)
104
102
  concurrent-ruby (~> 1.0)
105
103
  io-console (0.7.2)
106
- irb (1.13.2)
104
+ irb (1.14.1)
107
105
  rdoc (>= 4.0.0)
108
106
  reline (>= 0.4.2)
109
- json (2.7.2)
107
+ json (2.8.1)
110
108
  language_server-protocol (3.17.0.3)
111
- loofah (2.22.0)
109
+ logger (1.6.1)
110
+ loofah (2.23.1)
112
111
  crass (~> 1.0.2)
113
112
  nokogiri (>= 1.12.0)
114
113
  mail (2.8.1)
@@ -117,13 +116,12 @@ GEM
117
116
  net-pop
118
117
  net-smtp
119
118
  marcel (1.0.4)
120
- memo_wise (1.9.0)
119
+ memo_wise (1.10.0)
121
120
  method_source (1.1.0)
122
121
  mini_mime (1.1.5)
123
122
  mini_portile2 (2.8.7)
124
- minitest (5.24.0)
125
- mutex_m (0.2.0)
126
- net-imap (0.4.14)
123
+ minitest (5.25.1)
124
+ net-imap (0.5.0)
127
125
  date
128
126
  net-protocol
129
127
  net-pop (0.1.2)
@@ -132,46 +130,45 @@ GEM
132
130
  timeout
133
131
  net-smtp (0.5.0)
134
132
  net-protocol
135
- nio4r (2.7.3)
136
- nokogiri (1.16.6)
133
+ nio4r (2.7.4)
134
+ nokogiri (1.16.7)
137
135
  mini_portile2 (~> 2.8.2)
138
136
  racc (~> 1.4)
139
- parallel (1.25.1)
140
- parser (3.3.3.0)
137
+ parallel (1.26.3)
138
+ parser (3.3.6.0)
141
139
  ast (~> 2.4.1)
142
140
  racc
143
- prism (0.30.0)
141
+ prism (1.2.0)
144
142
  pry (0.14.2)
145
143
  coderay (~> 1.1)
146
144
  method_source (~> 1.0)
147
145
  pry-byebug (3.10.1)
148
146
  byebug (~> 11.0)
149
147
  pry (>= 0.13, < 0.15)
150
- psych (5.1.2)
148
+ psych (5.2.0)
151
149
  stringio
152
- racc (1.8.0)
153
- rack (3.1.4)
150
+ racc (1.8.1)
151
+ rack (3.1.8)
154
152
  rack-session (2.0.0)
155
153
  rack (>= 3.0.0)
156
154
  rack-test (2.1.0)
157
155
  rack (>= 1.3)
158
- rackup (2.1.0)
156
+ rackup (2.2.0)
159
157
  rack (>= 3)
160
- webrick (~> 1.8)
161
- rails (7.1.3.4)
162
- actioncable (= 7.1.3.4)
163
- actionmailbox (= 7.1.3.4)
164
- actionmailer (= 7.1.3.4)
165
- actionpack (= 7.1.3.4)
166
- actiontext (= 7.1.3.4)
167
- actionview (= 7.1.3.4)
168
- activejob (= 7.1.3.4)
169
- activemodel (= 7.1.3.4)
170
- activerecord (= 7.1.3.4)
171
- activestorage (= 7.1.3.4)
172
- activesupport (= 7.1.3.4)
158
+ rails (7.2.2)
159
+ actioncable (= 7.2.2)
160
+ actionmailbox (= 7.2.2)
161
+ actionmailer (= 7.2.2)
162
+ actionpack (= 7.2.2)
163
+ actiontext (= 7.2.2)
164
+ actionview (= 7.2.2)
165
+ activejob (= 7.2.2)
166
+ activemodel (= 7.2.2)
167
+ activerecord (= 7.2.2)
168
+ activestorage (= 7.2.2)
169
+ activesupport (= 7.2.2)
173
170
  bundler (>= 1.15.0)
174
- railties (= 7.1.3.4)
171
+ railties (= 7.2.2)
175
172
  rails-dom-testing (2.2.0)
176
173
  activesupport (>= 5.0.0)
177
174
  minitest
@@ -179,10 +176,10 @@ GEM
179
176
  rails-html-sanitizer (1.6.0)
180
177
  loofah (~> 2.21)
181
178
  nokogiri (~> 1.14)
182
- railties (7.1.3.4)
183
- actionpack (= 7.1.3.4)
184
- activesupport (= 7.1.3.4)
185
- irb
179
+ railties (7.2.2)
180
+ actionpack (= 7.2.2)
181
+ activesupport (= 7.2.2)
182
+ irb (~> 1.13)
186
183
  rackup (>= 1.0.0)
187
184
  rake (>= 12.2)
188
185
  thor (~> 1.0, >= 1.2.2)
@@ -192,59 +189,58 @@ GEM
192
189
  rdoc (6.7.0)
193
190
  psych (>= 4.0.0)
194
191
  regexp_parser (2.9.2)
195
- reline (0.5.9)
192
+ reline (0.5.11)
196
193
  io-console (~> 0.5)
197
- rexml (3.3.1)
198
- strscan
199
- rouge (4.3.0)
194
+ rexml (3.3.9)
195
+ rouge (4.4.0)
200
196
  rspec (3.13.0)
201
197
  rspec-core (~> 3.13.0)
202
198
  rspec-expectations (~> 3.13.0)
203
199
  rspec-mocks (~> 3.13.0)
204
- rspec-core (3.13.0)
200
+ rspec-core (3.13.2)
205
201
  rspec-support (~> 3.13.0)
206
- rspec-expectations (3.13.1)
202
+ rspec-expectations (3.13.3)
207
203
  diff-lcs (>= 1.2.0, < 2.0)
208
204
  rspec-support (~> 3.13.0)
209
- rspec-mocks (3.13.1)
205
+ rspec-mocks (3.13.2)
210
206
  diff-lcs (>= 1.2.0, < 2.0)
211
207
  rspec-support (~> 3.13.0)
212
208
  rspec-support (3.13.1)
213
- rubocop (1.64.1)
209
+ rubocop (1.68.0)
214
210
  json (~> 2.3)
215
211
  language_server-protocol (>= 3.17.0)
216
212
  parallel (~> 1.10)
217
213
  parser (>= 3.3.0.2)
218
214
  rainbow (>= 2.2.2, < 4.0)
219
- regexp_parser (>= 1.8, < 3.0)
220
- rexml (>= 3.2.5, < 4.0)
221
- rubocop-ast (>= 1.31.1, < 2.0)
215
+ regexp_parser (>= 2.4, < 3.0)
216
+ rubocop-ast (>= 1.32.2, < 2.0)
222
217
  ruby-progressbar (~> 1.7)
223
218
  unicode-display_width (>= 2.4.0, < 3.0)
224
- rubocop-ast (1.31.3)
219
+ rubocop-ast (1.34.1)
225
220
  parser (>= 3.3.1.0)
226
- rubocop-performance (1.21.1)
221
+ rubocop-performance (1.22.1)
227
222
  rubocop (>= 1.48.1, < 2.0)
228
223
  rubocop-ast (>= 1.31.1, < 2.0)
229
224
  rubocop-rake (0.6.0)
230
225
  rubocop (~> 1.0)
231
- rubocop-rspec (3.0.1)
226
+ rubocop-rspec (3.2.0)
232
227
  rubocop (~> 1.61)
233
228
  ruby-progressbar (1.13.0)
234
- runger_config (5.1.0)
229
+ runger_config (5.2.0)
235
230
  activesupport (>= 7.1.2)
236
- runger_release_assistant (0.8.0)
231
+ runger_release_assistant (0.12.0)
237
232
  activesupport (>= 6, < 8)
238
233
  memo_wise (>= 1.7, < 2)
239
234
  rainbow (>= 3.0, < 4)
240
235
  slop (~> 4.8)
241
- runger_style (2.8.0)
236
+ runger_style (2.17.0)
242
237
  prism (>= 0.24.0)
243
238
  rubocop (>= 1.38.0, < 2)
244
- shaped (0.12.0)
239
+ securerandom (0.3.1)
240
+ shaped (0.13.0)
245
241
  activemodel (>= 6, < 8)
246
242
  activesupport (>= 6, < 8)
247
- simple_cov-formatter-terminal (1.2.0)
243
+ simple_cov-formatter-terminal (1.6.0)
248
244
  activesupport (>= 7.0.4, < 8)
249
245
  memo_wise (>= 1.7.0, < 2)
250
246
  rouge (>= 4.0.0, < 5)
@@ -258,23 +254,22 @@ GEM
258
254
  simplecov-cobertura (2.1.0)
259
255
  rexml
260
256
  simplecov (~> 0.19)
261
- simplecov-html (0.12.3)
257
+ simplecov-html (0.13.1)
262
258
  simplecov_json_formatter (0.1.4)
263
259
  slop (4.10.1)
264
- sqlite3 (1.7.3)
260
+ sqlite3 (2.2.0)
265
261
  mini_portile2 (~> 2.8.0)
266
- stringio (3.1.1)
267
- strscan (3.1.0)
268
- thor (1.3.1)
269
- timeout (0.4.1)
262
+ stringio (3.1.2)
263
+ thor (1.3.2)
264
+ timeout (0.4.2)
270
265
  tzinfo (2.0.6)
271
266
  concurrent-ruby (~> 1.0)
272
- unicode-display_width (2.5.0)
273
- webrick (1.8.1)
267
+ unicode-display_width (2.6.0)
268
+ useragent (0.16.10)
274
269
  websocket-driver (0.7.6)
275
270
  websocket-extensions (>= 0.1.0)
276
271
  websocket-extensions (0.1.5)
277
- zeitwerk (2.6.16)
272
+ zeitwerk (2.7.1)
278
273
 
279
274
  PLATFORMS
280
275
  ruby
@@ -293,10 +288,10 @@ DEPENDENCIES
293
288
  runger_style
294
289
  simple_cov-formatter-terminal
295
290
  simplecov-cobertura
296
- sqlite3 (< 2.0.0)
291
+ sqlite3 (< 3.0.0)
297
292
 
298
293
  RUBY VERSION
299
- ruby 3.3.3p89
294
+ ruby 3.3.6p108
300
295
 
301
296
  BUNDLED WITH
302
- 2.5.11
297
+ 2.5.23
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail # exit on any error, don't allow undefined variables, pipes don't swallow errors
4
+
5
+ lint gitleaks
6
+
7
+ background-and-notify lint rubocop
8
+ background-and-notify lint shellcheck
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RungerActions
4
- VERSION = '0.22.0'
4
+ VERSION = '0.24.0'
5
5
  end
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
30
30
  end
31
31
  spec.require_paths = ['lib']
32
32
 
33
- spec.add_runtime_dependency('memo_wise', '>= 1.7', '< 2')
34
- spec.add_runtime_dependency('rails', '>= 6', '< 8')
35
- spec.add_runtime_dependency('shaped', '>= 0.9', '< 0.13')
33
+ spec.add_dependency('memo_wise', '>= 1.7')
34
+ spec.add_dependency('rails', '>= 6')
35
+ spec.add_dependency('shaped', '>= 0.9')
36
36
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runger_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.22.0
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Runger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-28 00:00:00.000000000 Z
11
+ date: 2024-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: memo_wise
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.7'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '2'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '1.7'
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '2'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: rails
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -37,9 +31,6 @@ dependencies:
37
31
  - - ">="
38
32
  - !ruby/object:Gem::Version
39
33
  version: '6'
40
- - - "<"
41
- - !ruby/object:Gem::Version
42
- version: '8'
43
34
  type: :runtime
44
35
  prerelease: false
45
36
  version_requirements: !ruby/object:Gem::Requirement
@@ -47,9 +38,6 @@ dependencies:
47
38
  - - ">="
48
39
  - !ruby/object:Gem::Version
49
40
  version: '6'
50
- - - "<"
51
- - !ruby/object:Gem::Version
52
- version: '8'
53
41
  - !ruby/object:Gem::Dependency
54
42
  name: shaped
55
43
  requirement: !ruby/object:Gem::Requirement
@@ -57,9 +45,6 @@ dependencies:
57
45
  - - ">="
58
46
  - !ruby/object:Gem::Version
59
47
  version: '0.9'
60
- - - "<"
61
- - !ruby/object:Gem::Version
62
- version: '0.13'
63
48
  type: :runtime
64
49
  prerelease: false
65
50
  version_requirements: !ruby/object:Gem::Requirement
@@ -67,9 +52,6 @@ dependencies:
67
52
  - - ">="
68
53
  - !ruby/object:Gem::Version
69
54
  version: '0.9'
70
- - - "<"
71
- - !ruby/object:Gem::Version
72
- version: '0.13'
73
55
  description: Organize (and validate) the business logic of your Rails application.
74
56
  email:
75
57
  - davidjrunger@gmail.com
@@ -84,6 +66,7 @@ files:
84
66
  - ".rspec"
85
67
  - ".rubocop.yml"
86
68
  - ".ruby-version"
69
+ - ".runger-config.yml"
87
70
  - CHANGELOG.md
88
71
  - Gemfile
89
72
  - Gemfile.lock
@@ -93,6 +76,7 @@ files:
93
76
  - Rakefile
94
77
  - bin/_guard-core
95
78
  - bin/console
79
+ - bin/githooks/pre-push
96
80
  - bin/guard
97
81
  - bin/release
98
82
  - bin/rspec
@@ -130,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
114
  - !ruby/object:Gem::Version
131
115
  version: '0'
132
116
  requirements: []
133
- rubygems_version: 3.5.14
117
+ rubygems_version: 3.5.23
134
118
  signing_key:
135
119
  specification_version: 4
136
120
  summary: Organize (and validate) the business logic of your Rails application.