rbexy 2.0.0.rc5 → 2.0.0.rc6

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: f3e307f06d063d443b8855957782b0a50d784b668cff6416f8f62104806c311d
4
- data.tar.gz: 58b42a19cc1f1feebb6377f4373fe5a41b90e582ee655dcc56714fbbf9b66a43
3
+ metadata.gz: e6ec0bdcd23bf0056c35d870e182e83a88f73d2fa2b32dd325f8339300b5018d
4
+ data.tar.gz: 48d86d9779e1d628d320e6c3542063620658099f74a1be1cfa29632df581342e
5
5
  SHA512:
6
- metadata.gz: 48ccb0e6d85c8c30b9c57f5ed95669c1569cb97c364a1504758bfe4b5f0a6be2793d63810746a68ed05c380bd4b64f5daa5f495c1ee280518c46a0700c1f9ecb
7
- data.tar.gz: '09c95507b417c6725f177abda4a1927b838baf50e6534401daeee8e937cb1c7f4d7d5115a17fecc454c05571197097293d1bea2540587192ba6e31d03a51f04c'
6
+ metadata.gz: 9a4083b44c19053b0d92d5b57ea53ae24ff54982ddeb6c6739fe87534f7101ce5382738b196ea781b5db3866691e9ba33b5b28a999140ef51c72602b28d2c48c
7
+ data.tar.gz: 5dc98896aeec586df60c021274b0befee254d71b9c20363aad1167901fc33c0e4a362671d1c3a3a5e4e6d94d58d622f199f7d904348cad3627f3fbde5f894a15
@@ -5,9 +5,9 @@ jobs:
5
5
  strategy:
6
6
  fail-fast: false
7
7
  matrix:
8
- gemfile: [rails_6_1, rails_7_0, rails_7_1, rails_master]
8
+ gemfile: [rails_7_0, rails_7_1, rails_7_2, rails_8_0, rails_8_1]
9
9
  # quote version numbers, they are not "numbers"
10
- ruby: ['3.1', '3.2', '3.3']
10
+ ruby: ['3.3']
11
11
  runs-on: ubuntu-latest
12
12
  env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
13
13
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
data/Appraisals CHANGED
@@ -1,10 +1,6 @@
1
- appraise "rails-6-1" do
2
- gem "rails", "~> 6.1.4"
3
- gem "net-smtp", require: false
4
- end
5
-
6
1
  appraise "rails-7-0" do
7
2
  gem "rails", "~> 7.0.0"
3
+ gem "sqlite3", "~> 1.4"
8
4
  end
9
5
 
10
6
  appraise "rails-7-1" do
@@ -15,6 +11,10 @@ appraise "rails-7-2" do
15
11
  gem "rails", "~> 7.2.0"
16
12
  end
17
13
 
18
- appraise "rails-master" do
19
- gem "rails", git: "https://github.com/rails/rails.git", branch: :main
14
+ appraise "rails-8-0" do
15
+ gem "rails", "~> 8.0.0"
16
+ end
17
+
18
+ appraise "rails-8-1" do
19
+ gem "rails", "~> 8.1.0"
20
20
  end
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbexy (2.0.0.rc5)
5
- actionview (>= 6, < 7.3)
6
- activesupport (>= 6, < 7.3)
4
+ rbexy (2.0.0.rc6)
5
+ actionview (>= 7.0, < 8.2)
6
+ activesupport (>= 7.0, < 8.2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -151,6 +151,8 @@ GEM
151
151
  nokogiri (1.16.7)
152
152
  mini_portile2 (~> 2.8.2)
153
153
  racc (~> 1.4)
154
+ nokogiri (1.16.7-x86_64-linux)
155
+ racc (~> 1.4)
154
156
  notiffany (0.1.3)
155
157
  nenv (~> 0.1)
156
158
  shellany (~> 0.0)
@@ -258,6 +260,7 @@ GEM
258
260
 
259
261
  PLATFORMS
260
262
  ruby
263
+ x86_64-linux
261
264
 
262
265
  DEPENDENCIES
263
266
  appraisal (~> 2.2)
@@ -265,7 +268,7 @@ DEPENDENCIES
265
268
  memory_profiler (~> 0.9.14)
266
269
  pry-byebug
267
270
  puma
268
- rails (>= 6, < 7.3)
271
+ rails (>= 7.0, < 8.2)
269
272
  rake
270
273
  rbexy!
271
274
  rspec (~> 3.12)
@@ -3,5 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "~> 7.0.0"
6
+ gem "sqlite3", "~> 1.4"
6
7
 
7
8
  gemspec path: "../"
@@ -1,97 +1,122 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rbexy (2.0.0.rc5)
5
- actionview (>= 6, < 7.3)
6
- activesupport (>= 6, < 7.3)
4
+ rbexy (2.0.0.rc6)
5
+ actionview (>= 7.0, < 8.2)
6
+ activesupport (>= 7.0, < 8.2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (7.0.8.1)
12
- actionpack (= 7.0.8.1)
13
- activesupport (= 7.0.8.1)
11
+ actioncable (7.0.10)
12
+ actionpack (= 7.0.10)
13
+ activesupport (= 7.0.10)
14
14
  nio4r (~> 2.0)
15
15
  websocket-driver (>= 0.6.1)
16
- actionmailbox (7.0.8.1)
17
- actionpack (= 7.0.8.1)
18
- activejob (= 7.0.8.1)
19
- activerecord (= 7.0.8.1)
20
- activestorage (= 7.0.8.1)
21
- activesupport (= 7.0.8.1)
16
+ actionmailbox (7.0.10)
17
+ actionpack (= 7.0.10)
18
+ activejob (= 7.0.10)
19
+ activerecord (= 7.0.10)
20
+ activestorage (= 7.0.10)
21
+ activesupport (= 7.0.10)
22
22
  mail (>= 2.7.1)
23
23
  net-imap
24
24
  net-pop
25
25
  net-smtp
26
- actionmailer (7.0.8.1)
27
- actionpack (= 7.0.8.1)
28
- actionview (= 7.0.8.1)
29
- activejob (= 7.0.8.1)
30
- activesupport (= 7.0.8.1)
26
+ actionmailer (7.0.10)
27
+ actionpack (= 7.0.10)
28
+ actionview (= 7.0.10)
29
+ activejob (= 7.0.10)
30
+ activesupport (= 7.0.10)
31
31
  mail (~> 2.5, >= 2.5.4)
32
32
  net-imap
33
33
  net-pop
34
34
  net-smtp
35
35
  rails-dom-testing (~> 2.0)
36
- actionpack (7.0.8.1)
37
- actionview (= 7.0.8.1)
38
- activesupport (= 7.0.8.1)
36
+ actionpack (7.0.10)
37
+ actionview (= 7.0.10)
38
+ activesupport (= 7.0.10)
39
+ racc
39
40
  rack (~> 2.0, >= 2.2.4)
40
41
  rack-test (>= 0.6.3)
41
42
  rails-dom-testing (~> 2.0)
42
43
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
- actiontext (7.0.8.1)
44
- actionpack (= 7.0.8.1)
45
- activerecord (= 7.0.8.1)
46
- activestorage (= 7.0.8.1)
47
- activesupport (= 7.0.8.1)
44
+ actiontext (7.0.10)
45
+ actionpack (= 7.0.10)
46
+ activerecord (= 7.0.10)
47
+ activestorage (= 7.0.10)
48
+ activesupport (= 7.0.10)
48
49
  globalid (>= 0.6.0)
49
50
  nokogiri (>= 1.8.5)
50
- actionview (7.0.8.1)
51
- activesupport (= 7.0.8.1)
51
+ actionview (7.0.10)
52
+ activesupport (= 7.0.10)
52
53
  builder (~> 3.1)
53
54
  erubi (~> 1.4)
54
55
  rails-dom-testing (~> 2.0)
55
56
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
56
- activejob (7.0.8.1)
57
- activesupport (= 7.0.8.1)
57
+ activejob (7.0.10)
58
+ activesupport (= 7.0.10)
58
59
  globalid (>= 0.3.6)
59
- activemodel (7.0.8.1)
60
- activesupport (= 7.0.8.1)
61
- activerecord (7.0.8.1)
62
- activemodel (= 7.0.8.1)
63
- activesupport (= 7.0.8.1)
64
- activestorage (7.0.8.1)
65
- actionpack (= 7.0.8.1)
66
- activejob (= 7.0.8.1)
67
- activerecord (= 7.0.8.1)
68
- activesupport (= 7.0.8.1)
60
+ activemodel (7.0.10)
61
+ activesupport (= 7.0.10)
62
+ activerecord (7.0.10)
63
+ activemodel (= 7.0.10)
64
+ activesupport (= 7.0.10)
65
+ activestorage (7.0.10)
66
+ actionpack (= 7.0.10)
67
+ activejob (= 7.0.10)
68
+ activerecord (= 7.0.10)
69
+ activesupport (= 7.0.10)
69
70
  marcel (~> 1.0)
70
71
  mini_mime (>= 1.1.0)
71
- activesupport (7.0.8.1)
72
+ activesupport (7.0.10)
73
+ base64
74
+ benchmark (>= 0.3)
75
+ bigdecimal
72
76
  concurrent-ruby (~> 1.0, >= 1.0.2)
77
+ drb
73
78
  i18n (>= 1.6, < 2)
79
+ logger (>= 1.4.2)
74
80
  minitest (>= 5.1)
81
+ mutex_m
82
+ securerandom (>= 0.3)
75
83
  tzinfo (~> 2.0)
76
84
  appraisal (2.5.0)
77
85
  bundler
78
86
  rake
79
87
  thor (>= 0.14.0)
80
- builder (3.2.4)
81
- byebug (11.1.3)
88
+ base64 (0.3.0)
89
+ benchmark (0.5.0)
90
+ bigdecimal (4.1.1)
91
+ builder (3.3.0)
92
+ byebug (13.0.0)
93
+ reline (>= 0.6.0)
82
94
  coderay (1.1.3)
83
- concurrent-ruby (1.2.3)
95
+ concurrent-ruby (1.3.6)
84
96
  crass (1.0.6)
85
- date (3.3.4)
86
- diff-lcs (1.5.1)
87
- erubi (1.12.0)
88
- ffi (1.16.3)
89
- formatador (1.1.0)
90
- globalid (1.2.1)
97
+ date (3.5.1)
98
+ diff-lcs (1.6.2)
99
+ drb (2.2.3)
100
+ erubi (1.13.1)
101
+ ffi (1.17.4)
102
+ ffi (1.17.4-aarch64-linux-gnu)
103
+ ffi (1.17.4-aarch64-linux-musl)
104
+ ffi (1.17.4-arm-linux-gnu)
105
+ ffi (1.17.4-arm-linux-musl)
106
+ ffi (1.17.4-arm64-darwin)
107
+ ffi (1.17.4-x86-linux-gnu)
108
+ ffi (1.17.4-x86-linux-musl)
109
+ ffi (1.17.4-x86_64-darwin)
110
+ ffi (1.17.4-x86_64-linux-gnu)
111
+ ffi (1.17.4-x86_64-linux-musl)
112
+ formatador (1.2.3)
113
+ reline
114
+ globalid (1.3.0)
91
115
  activesupport (>= 6.1)
92
- guard (2.18.1)
116
+ guard (2.20.1)
93
117
  formatador (>= 0.2.4)
94
118
  listen (>= 2.7, < 4.0)
119
+ logger (~> 1.6)
95
120
  lumberjack (>= 1.0.12, < 2.0)
96
121
  nenv (~> 0.1)
97
122
  notiffany (~> 0.0)
@@ -103,133 +128,181 @@ GEM
103
128
  guard (~> 2.1)
104
129
  guard-compat (~> 1.1)
105
130
  rspec (>= 2.99.0, < 4.0)
106
- i18n (1.14.1)
131
+ i18n (1.14.8)
107
132
  concurrent-ruby (~> 1.0)
108
- listen (3.8.0)
133
+ io-console (0.8.2)
134
+ listen (3.10.0)
135
+ logger
109
136
  rb-fsevent (~> 0.10, >= 0.10.3)
110
137
  rb-inotify (~> 0.9, >= 0.9.10)
111
- loofah (2.22.0)
138
+ logger (1.7.0)
139
+ loofah (2.25.1)
112
140
  crass (~> 1.0.2)
113
141
  nokogiri (>= 1.12.0)
114
- lumberjack (1.2.10)
115
- mail (2.8.1)
142
+ lumberjack (1.4.2)
143
+ mail (2.9.0)
144
+ logger
116
145
  mini_mime (>= 0.1.1)
117
146
  net-imap
118
147
  net-pop
119
148
  net-smtp
120
- marcel (1.0.2)
149
+ marcel (1.1.0)
121
150
  memory_profiler (0.9.14)
122
- method_source (1.0.0)
151
+ method_source (1.1.0)
123
152
  mini_mime (1.1.5)
124
- minitest (5.22.2)
153
+ mini_portile2 (2.8.9)
154
+ minitest (6.0.3)
155
+ drb (~> 2.0)
156
+ prism (~> 1.5)
157
+ mutex_m (0.3.0)
125
158
  nenv (0.3.0)
126
- net-imap (0.4.10)
159
+ net-imap (0.6.3)
127
160
  date
128
161
  net-protocol
129
162
  net-pop (0.1.2)
130
163
  net-protocol
131
164
  net-protocol (0.2.2)
132
165
  timeout
133
- net-smtp (0.4.0.1)
166
+ net-smtp (0.5.1)
134
167
  net-protocol
135
- nio4r (2.7.0)
136
- nokogiri (1.16.2-arm64-darwin)
168
+ nio4r (2.7.5)
169
+ nokogiri (1.19.2)
170
+ mini_portile2 (~> 2.8.2)
137
171
  racc (~> 1.4)
138
- nokogiri (1.16.2-x86_64-linux)
172
+ nokogiri (1.19.2-aarch64-linux-gnu)
173
+ racc (~> 1.4)
174
+ nokogiri (1.19.2-aarch64-linux-musl)
175
+ racc (~> 1.4)
176
+ nokogiri (1.19.2-arm-linux-gnu)
177
+ racc (~> 1.4)
178
+ nokogiri (1.19.2-arm-linux-musl)
179
+ racc (~> 1.4)
180
+ nokogiri (1.19.2-arm64-darwin)
181
+ racc (~> 1.4)
182
+ nokogiri (1.19.2-x86_64-darwin)
183
+ racc (~> 1.4)
184
+ nokogiri (1.19.2-x86_64-linux-gnu)
185
+ racc (~> 1.4)
186
+ nokogiri (1.19.2-x86_64-linux-musl)
139
187
  racc (~> 1.4)
140
188
  notiffany (0.1.3)
141
189
  nenv (~> 0.1)
142
190
  shellany (~> 0.0)
143
- pry (0.14.2)
191
+ prism (1.9.0)
192
+ pry (0.16.0)
144
193
  coderay (~> 1.1)
145
194
  method_source (~> 1.0)
146
- pry-byebug (3.10.1)
147
- byebug (~> 11.0)
148
- pry (>= 0.13, < 0.15)
149
- puma (6.4.2)
195
+ reline (>= 0.6.0)
196
+ pry-byebug (3.12.0)
197
+ byebug (~> 13.0)
198
+ pry (>= 0.13, < 0.17)
199
+ puma (7.2.0)
150
200
  nio4r (~> 2.0)
151
- racc (1.7.3)
152
- rack (2.2.8.1)
153
- rack-test (2.1.0)
201
+ racc (1.8.1)
202
+ rack (2.2.23)
203
+ rack-test (2.2.0)
154
204
  rack (>= 1.3)
155
- rails (7.0.8.1)
156
- actioncable (= 7.0.8.1)
157
- actionmailbox (= 7.0.8.1)
158
- actionmailer (= 7.0.8.1)
159
- actionpack (= 7.0.8.1)
160
- actiontext (= 7.0.8.1)
161
- actionview (= 7.0.8.1)
162
- activejob (= 7.0.8.1)
163
- activemodel (= 7.0.8.1)
164
- activerecord (= 7.0.8.1)
165
- activestorage (= 7.0.8.1)
166
- activesupport (= 7.0.8.1)
205
+ rails (7.0.10)
206
+ actioncable (= 7.0.10)
207
+ actionmailbox (= 7.0.10)
208
+ actionmailer (= 7.0.10)
209
+ actionpack (= 7.0.10)
210
+ actiontext (= 7.0.10)
211
+ actionview (= 7.0.10)
212
+ activejob (= 7.0.10)
213
+ activemodel (= 7.0.10)
214
+ activerecord (= 7.0.10)
215
+ activestorage (= 7.0.10)
216
+ activesupport (= 7.0.10)
167
217
  bundler (>= 1.15.0)
168
- railties (= 7.0.8.1)
169
- rails-dom-testing (2.2.0)
218
+ railties (= 7.0.10)
219
+ rails-dom-testing (2.3.0)
170
220
  activesupport (>= 5.0.0)
171
221
  minitest
172
222
  nokogiri (>= 1.6)
173
- rails-html-sanitizer (1.6.0)
174
- loofah (~> 2.21)
175
- nokogiri (~> 1.14)
176
- railties (7.0.8.1)
177
- actionpack (= 7.0.8.1)
178
- activesupport (= 7.0.8.1)
223
+ rails-html-sanitizer (1.7.0)
224
+ loofah (~> 2.25)
225
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
226
+ railties (7.0.10)
227
+ actionpack (= 7.0.10)
228
+ activesupport (= 7.0.10)
179
229
  method_source
180
230
  rake (>= 12.2)
181
231
  thor (~> 1.0)
182
232
  zeitwerk (~> 2.5)
183
- rake (13.1.0)
233
+ rake (13.3.1)
184
234
  rb-fsevent (0.11.2)
185
- rb-inotify (0.10.1)
235
+ rb-inotify (0.11.1)
186
236
  ffi (~> 1.0)
187
- rspec (3.13.0)
237
+ reline (0.6.3)
238
+ io-console (~> 0.5)
239
+ rspec (3.13.2)
188
240
  rspec-core (~> 3.13.0)
189
241
  rspec-expectations (~> 3.13.0)
190
242
  rspec-mocks (~> 3.13.0)
191
- rspec-core (3.13.0)
243
+ rspec-core (3.13.6)
192
244
  rspec-support (~> 3.13.0)
193
- rspec-expectations (3.13.0)
245
+ rspec-expectations (3.13.5)
194
246
  diff-lcs (>= 1.2.0, < 2.0)
195
247
  rspec-support (~> 3.13.0)
196
248
  rspec-html-matchers (0.9.4)
197
249
  nokogiri (~> 1)
198
250
  rspec (>= 3.0.0.a, < 4)
199
- rspec-mocks (3.13.0)
251
+ rspec-mocks (3.13.8)
200
252
  diff-lcs (>= 1.2.0, < 2.0)
201
253
  rspec-support (~> 3.13.0)
202
- rspec-rails (6.1.1)
254
+ rspec-rails (6.1.5)
203
255
  actionpack (>= 6.1)
204
256
  activesupport (>= 6.1)
205
257
  railties (>= 6.1)
206
- rspec-core (~> 3.12)
207
- rspec-expectations (~> 3.12)
208
- rspec-mocks (~> 3.12)
209
- rspec-support (~> 3.12)
210
- rspec-support (3.13.0)
258
+ rspec-core (~> 3.13)
259
+ rspec-expectations (~> 3.13)
260
+ rspec-mocks (~> 3.13)
261
+ rspec-support (~> 3.13)
262
+ rspec-support (3.13.7)
263
+ securerandom (0.4.1)
211
264
  shellany (0.0.1)
212
- sprockets (4.2.1)
265
+ sprockets (4.2.2)
213
266
  concurrent-ruby (~> 1.0)
267
+ logger
214
268
  rack (>= 2.2.4, < 4)
215
- sprockets-rails (3.4.2)
216
- actionpack (>= 5.2)
217
- activesupport (>= 5.2)
269
+ sprockets-rails (3.5.2)
270
+ actionpack (>= 6.1)
271
+ activesupport (>= 6.1)
218
272
  sprockets (>= 3.0.0)
219
- sqlite3 (1.7.2-arm64-darwin)
220
- sqlite3 (1.7.2-x86_64-linux)
221
- thor (1.3.0)
222
- timeout (0.4.1)
273
+ sqlite3 (1.7.3)
274
+ mini_portile2 (~> 2.8.0)
275
+ sqlite3 (1.7.3-aarch64-linux)
276
+ sqlite3 (1.7.3-arm-linux)
277
+ sqlite3 (1.7.3-arm64-darwin)
278
+ sqlite3 (1.7.3-x86-linux)
279
+ sqlite3 (1.7.3-x86_64-darwin)
280
+ sqlite3 (1.7.3-x86_64-linux)
281
+ thor (1.5.0)
282
+ timeout (0.6.1)
223
283
  tzinfo (2.0.6)
224
284
  concurrent-ruby (~> 1.0)
225
- websocket-driver (0.7.6)
285
+ websocket-driver (0.8.0)
286
+ base64
226
287
  websocket-extensions (>= 0.1.0)
227
288
  websocket-extensions (0.1.5)
228
- zeitwerk (2.6.13)
289
+ zeitwerk (2.7.5)
229
290
 
230
291
  PLATFORMS
231
- arm64-darwin-23
292
+ aarch64-linux-gnu
293
+ aarch64-linux-musl
294
+ arm-linux
295
+ arm-linux-gnu
296
+ arm-linux-musl
297
+ arm64-darwin
298
+ ruby
299
+ x86-linux
300
+ x86-linux-gnu
301
+ x86-linux-musl
302
+ x86_64-darwin
232
303
  x86_64-linux
304
+ x86_64-linux-gnu
305
+ x86_64-linux-musl
233
306
 
234
307
  DEPENDENCIES
235
308
  appraisal (~> 2.2)
@@ -244,7 +317,7 @@ DEPENDENCIES
244
317
  rspec-html-matchers (~> 0.9.3)
245
318
  rspec-rails (~> 6.0, >= 6.0.3)
246
319
  sprockets-rails (>= 2, < 4)
247
- sqlite3
320
+ sqlite3 (~> 1.4)
248
321
 
249
322
  BUNDLED WITH
250
- 2.5.6
323
+ 2.5.16