qbwc 1.2.0 → 1.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4df3ae87a0c50c2c850c9730d698ec6bd32baa591abef90b4547cd52742e2542
4
- data.tar.gz: 632a89f9a5f4ea775085bcfa9e9f5b2a0623276bc94173aac9d6fad522b72314
3
+ metadata.gz: d5888ae4ba64ed7d3286c2e6660683840eb5518a5e06b93e0966920243f217fa
4
+ data.tar.gz: 8b7a099d8c03494a096d05fa5f009780f17a65d11d70dd173f79b0798c59560f
5
5
  SHA512:
6
- metadata.gz: f38af1707f748f08e51ebd27ec0086ec6a9b776501a764c9258065bc459fce29161d225b6f0918c7a335b0bbd194e641e31871aa30803c8f278d1edb9ade95fc
7
- data.tar.gz: dd8250ecf3df63f29d629e86adaf89764099cc7513a106a6f4fadef0bd18909003aae5759bffc8a609a4bcde5cdcd56fa4336a7e91ff601bd34203fa6d92fa05
6
+ metadata.gz: 96f721c99d4e76009aa095c2a79bdb7e4cfaf10f9f13ec80eb6d17d5b401785d8fa9f799a30bddbaf8cae532e7510127c4eb29a655323c3e2ff9dd787b6cab1e
7
+ data.tar.gz: e9f7031c42efa9c3da926cdb1c43259494dbc844e1d353cfd552282e2a9aa361e26c43df84752dbef9db25b41cac1a76e829de3b20514ed3fd92c0dc39fbb3fc
@@ -15,6 +15,7 @@ jobs:
15
15
  - 3.1
16
16
  - 3.2
17
17
  - 3.3
18
+ - 3.4
18
19
  rails-version:
19
20
  - 5.1
20
21
  - 5.2
@@ -22,21 +23,42 @@ jobs:
22
23
  - 6.1
23
24
  - '7.0'
24
25
  - 7.1
26
+ - 7.2
27
+ - '8.0'
28
+ - 8.1
25
29
  exclude:
26
30
  - ruby-version: 2.7
27
31
  rails-version: 7.1
32
+ - ruby-version: 2.7
33
+ rails-version: 7.2
34
+ - ruby-version: 2.7
35
+ rails-version: 8.0
36
+ - ruby-version: 2.7
37
+ rails-version: 8.1
28
38
  - ruby-version: 3.0
29
39
  rails-version: 5.1
30
40
  - ruby-version: 3.0
31
41
  rails-version: 5.2
32
42
  - ruby-version: 3.0
33
43
  rails-version: 7.1
44
+ - ruby-version: 3.0
45
+ rails-version: 7.2
46
+ - ruby-version: 3.0
47
+ rails-version: 8.0
48
+ - ruby-version: 3.0
49
+ rails-version: 8.1
34
50
  - ruby-version: 3.1
35
51
  rails-version: 5.1
36
52
  - ruby-version: 3.1
37
53
  rails-version: 5.2
38
54
  - ruby-version: 3.1
39
55
  rails-version: 7.1
56
+ - ruby-version: 3.1
57
+ rails-version: 7.2
58
+ - ruby-version: 3.1
59
+ rails-version: 8.0
60
+ - ruby-version: 3.1
61
+ rails-version: 8.1
40
62
  - ruby-version: 3.2
41
63
  rails-version: 5.1
42
64
  - ruby-version: 3.2
@@ -55,6 +77,16 @@ jobs:
55
77
  rails-version: 6.1
56
78
  - ruby-version: 3.3
57
79
  rails-version: 7.0
80
+ - ruby-version: 3.4
81
+ rails-version: 5.1
82
+ - ruby-version: 3.4
83
+ rails-version: 5.2
84
+ - ruby-version: 3.4
85
+ rails-version: 6.0
86
+ - ruby-version: 3.4
87
+ rails-version: 6.1
88
+ - ruby-version: 3.4
89
+ rails-version: 7.0
58
90
  env:
59
91
  BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
60
92
  steps:
data/Appraisals CHANGED
@@ -34,3 +34,18 @@ appraise "rails-7.1" do
34
34
  gem "actionpack", "~> 7.1.0"
35
35
  gem "actionview", "~> 7.1.0"
36
36
  end
37
+
38
+ appraise "rails-7.2" do
39
+ gem "actionpack", "~> 7.2.0"
40
+ gem "actionview", "~> 7.2.0"
41
+ end
42
+
43
+ appraise "rails-8.0" do
44
+ gem "actionpack", "~> 8.0.0"
45
+ gem "actionview", "~> 8.0.0"
46
+ end
47
+
48
+ appraise "rails-8.1" do
49
+ gem "actionpack", "~> 8.1.0"
50
+ gem "actionview", "~> 8.1.0"
51
+ end
data/CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
1
 
2
2
  # Change Log
3
3
 
4
+ ## [1.3.0](https://github.com/qbwc/qbwc/releases/tag/v1.3.0) (2025-03-19)
5
+ [Full Changelog](https://github.com/qbwc/qbwc/compare/1.2.0...1.3.0)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Fix an error when `Rails.application.config.active_record.default_column_serializer` is `nil`, as is default starting in Rails 7.1. Add the config `QBWC.default_column_serializer` to set the default `coder` on ActiveRecord `serialize` declarations in `QBWC::ActiveRecord::Job`. If not set, default to the value from `Rails.application.config.active_record.default_column_serializer`. If that's not set, default to `YAML` to preserve backwards compatibility.
10
+ - Support Ruby 3.4.
11
+ - Support Rails 7.2, 8.0, and 8.1.
12
+
4
13
  ## [1.2.0](https://github.com/qbwc/qbwc/releases/tag/v1.2.0) (2025-03-19)
5
14
  [Full Changelog](https://github.com/qbwc/qbwc/compare/1.1.0...1.2.0)
6
15
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- qbwc (1.2.0)
4
+ qbwc (1.3.0)
5
5
  actionpack (>= 5.0.1)
6
6
  qbxml (>= 0.3.0)
7
7
  wash_out (>= 0.12.0)
@@ -9,80 +9,80 @@ PATH
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
+ action_text-trix (2.1.15)
13
+ railties
14
+ actioncable (8.1.1)
15
+ actionpack (= 8.1.1)
16
+ activesupport (= 8.1.1)
15
17
  nio4r (~> 2.0)
16
18
  websocket-driver (>= 0.6.1)
17
19
  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
20
+ actionmailbox (8.1.1)
21
+ actionpack (= 8.1.1)
22
+ activejob (= 8.1.1)
23
+ activerecord (= 8.1.1)
24
+ activestorage (= 8.1.1)
25
+ activesupport (= 8.1.1)
26
+ mail (>= 2.8.0)
27
+ actionmailer (8.1.1)
28
+ actionpack (= 8.1.1)
29
+ actionview (= 8.1.1)
30
+ activejob (= 8.1.1)
31
+ activesupport (= 8.1.1)
32
+ mail (>= 2.8.0)
37
33
  rails-dom-testing (~> 2.2)
38
- actionpack (7.1.3.4)
39
- actionview (= 7.1.3.4)
40
- activesupport (= 7.1.3.4)
34
+ actionpack (8.1.1)
35
+ actionview (= 8.1.1)
36
+ activesupport (= 8.1.1)
41
37
  nokogiri (>= 1.8.5)
42
- racc
43
38
  rack (>= 2.2.4)
44
39
  rack-session (>= 1.0.1)
45
40
  rack-test (>= 0.6.3)
46
41
  rails-dom-testing (~> 2.2)
47
42
  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)
43
+ useragent (~> 0.16)
44
+ actiontext (8.1.1)
45
+ action_text-trix (~> 2.1.15)
46
+ actionpack (= 8.1.1)
47
+ activerecord (= 8.1.1)
48
+ activestorage (= 8.1.1)
49
+ activesupport (= 8.1.1)
53
50
  globalid (>= 0.6.0)
54
51
  nokogiri (>= 1.8.5)
55
- actionview (7.1.3.4)
56
- activesupport (= 7.1.3.4)
52
+ actionview (8.1.1)
53
+ activesupport (= 8.1.1)
57
54
  builder (~> 3.1)
58
55
  erubi (~> 1.11)
59
56
  rails-dom-testing (~> 2.2)
60
57
  rails-html-sanitizer (~> 1.6)
61
- activejob (7.1.3.4)
62
- activesupport (= 7.1.3.4)
58
+ activejob (8.1.1)
59
+ activesupport (= 8.1.1)
63
60
  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)
61
+ activemodel (8.1.1)
62
+ activesupport (= 8.1.1)
63
+ activerecord (8.1.1)
64
+ activemodel (= 8.1.1)
65
+ activesupport (= 8.1.1)
69
66
  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)
67
+ activestorage (8.1.1)
68
+ actionpack (= 8.1.1)
69
+ activejob (= 8.1.1)
70
+ activerecord (= 8.1.1)
71
+ activesupport (= 8.1.1)
75
72
  marcel (~> 1.0)
76
- activesupport (7.1.3.4)
73
+ activesupport (8.1.1)
77
74
  base64
78
75
  bigdecimal
79
- concurrent-ruby (~> 1.0, >= 1.0.2)
76
+ concurrent-ruby (~> 1.0, >= 1.3.1)
80
77
  connection_pool (>= 2.2.5)
81
78
  drb
82
79
  i18n (>= 1.6, < 2)
80
+ json
81
+ logger (>= 1.4.2)
83
82
  minitest (>= 5.1)
84
- mutex_m
85
- tzinfo (~> 2.0)
83
+ securerandom (>= 0.3)
84
+ tzinfo (~> 2.0, >= 2.0.5)
85
+ uri (>= 0.13.1)
86
86
  addressable (2.8.7)
87
87
  public_suffix (>= 2.0.2, < 7.0)
88
88
  akami (1.3.3)
@@ -93,167 +93,168 @@ GEM
93
93
  bundler
94
94
  rake
95
95
  thor (>= 0.14.0)
96
- base64 (0.2.0)
97
- bigdecimal (3.1.9)
96
+ base64 (0.3.0)
97
+ bigdecimal (3.3.1)
98
98
  builder (3.3.0)
99
- byebug (11.1.3)
99
+ byebug (12.0.0)
100
100
  concurrent-ruby (1.3.5)
101
- connection_pool (2.5.0)
102
- crack (1.0.0)
101
+ connection_pool (2.5.4)
102
+ crack (1.0.1)
103
103
  bigdecimal
104
104
  rexml
105
105
  crass (1.0.6)
106
- date (3.3.4)
107
- diff-lcs (1.5.1)
108
- drb (2.2.1)
109
- erubi (1.13.0)
110
- faraday (2.9.2)
111
- faraday-net_http (>= 2.0, < 3.2)
112
- faraday-net_http (3.1.0)
113
- net-http
114
- globalid (1.2.1)
106
+ date (3.5.0)
107
+ drb (2.2.3)
108
+ erb (5.1.3)
109
+ erubi (1.13.1)
110
+ faraday (2.14.0)
111
+ faraday-net_http (>= 2.0, < 3.5)
112
+ json
113
+ logger
114
+ faraday-net_http (3.4.2)
115
+ net-http (~> 0.5)
116
+ globalid (1.3.0)
115
117
  activesupport (>= 6.1)
116
118
  gyoku (1.4.0)
117
119
  builder (>= 2.1.2)
118
120
  rexml (~> 3.0)
119
- hashdiff (1.1.0)
120
- httpi (4.0.2)
121
+ hashdiff (1.2.1)
122
+ httpi (4.0.4)
121
123
  base64
122
124
  mutex_m
123
125
  nkf
124
- rack (>= 2.0, < 3.1)
126
+ rack (>= 2.0, < 4)
125
127
  i18n (1.14.7)
126
128
  concurrent-ruby (~> 1.0)
127
- io-console (0.7.2)
128
- irb (1.13.2)
129
+ io-console (0.8.1)
130
+ irb (1.15.3)
131
+ pp (>= 0.6.0)
129
132
  rdoc (>= 4.0.0)
130
133
  reline (>= 0.4.2)
131
- loofah (2.22.0)
134
+ json (2.16.0)
135
+ logger (1.7.0)
136
+ loofah (2.24.1)
132
137
  crass (~> 1.0.2)
133
138
  nokogiri (>= 1.12.0)
134
- mail (2.8.1)
139
+ mail (2.9.0)
140
+ logger
135
141
  mini_mime (>= 0.1.1)
136
142
  net-imap
137
143
  net-pop
138
144
  net-smtp
139
- marcel (1.0.4)
145
+ marcel (1.1.0)
140
146
  mini_mime (1.1.5)
141
- minitest (5.25.5)
147
+ minitest (5.26.1)
142
148
  mutex_m (0.3.0)
143
- net-http (0.4.1)
149
+ net-http (0.7.0)
144
150
  uri
145
- net-imap (0.4.14)
151
+ net-imap (0.5.12)
146
152
  date
147
153
  net-protocol
148
154
  net-pop (0.1.2)
149
155
  net-protocol
150
156
  net-protocol (0.2.2)
151
157
  timeout
152
- net-smtp (0.5.0)
158
+ net-smtp (0.5.1)
153
159
  net-protocol
154
- nio4r (2.7.3)
160
+ nio4r (2.7.5)
155
161
  nkf (0.2.0)
156
- nokogiri (1.18.4-x86_64-linux-gnu)
162
+ nokogiri (1.18.10-x86_64-linux-gnu)
157
163
  racc (~> 1.4)
158
- nori (2.7.0)
164
+ nori (2.7.1)
159
165
  bigdecimal
160
- psych (5.1.2)
166
+ pp (0.6.3)
167
+ prettyprint
168
+ prettyprint (0.2.0)
169
+ psych (5.2.6)
170
+ date
161
171
  stringio
162
- public_suffix (6.0.0)
172
+ public_suffix (6.0.2)
163
173
  qbxml (0.5.0)
164
174
  activesupport (>= 5.0.0)
165
175
  builder (~> 3.0)
166
176
  nokogiri (~> 1.5)
167
177
  racc (1.8.1)
168
- rack (3.0.11)
169
- rack-session (2.0.0)
178
+ rack (3.2.4)
179
+ rack-session (2.1.1)
180
+ base64 (>= 0.1.0)
170
181
  rack (>= 3.0.0)
171
- rack-test (2.1.0)
182
+ rack-test (2.2.0)
172
183
  rack (>= 1.3)
173
- rackup (2.1.0)
184
+ rackup (2.2.1)
174
185
  rack (>= 3)
175
- webrick (~> 1.8)
176
- rails (7.1.3.4)
177
- actioncable (= 7.1.3.4)
178
- actionmailbox (= 7.1.3.4)
179
- actionmailer (= 7.1.3.4)
180
- actionpack (= 7.1.3.4)
181
- actiontext (= 7.1.3.4)
182
- actionview (= 7.1.3.4)
183
- activejob (= 7.1.3.4)
184
- activemodel (= 7.1.3.4)
185
- activerecord (= 7.1.3.4)
186
- activestorage (= 7.1.3.4)
187
- activesupport (= 7.1.3.4)
186
+ rails (8.1.1)
187
+ actioncable (= 8.1.1)
188
+ actionmailbox (= 8.1.1)
189
+ actionmailer (= 8.1.1)
190
+ actionpack (= 8.1.1)
191
+ actiontext (= 8.1.1)
192
+ actionview (= 8.1.1)
193
+ activejob (= 8.1.1)
194
+ activemodel (= 8.1.1)
195
+ activerecord (= 8.1.1)
196
+ activestorage (= 8.1.1)
197
+ activesupport (= 8.1.1)
188
198
  bundler (>= 1.15.0)
189
- railties (= 7.1.3.4)
190
- rails-dom-testing (2.2.0)
199
+ railties (= 8.1.1)
200
+ rails-dom-testing (2.3.0)
191
201
  activesupport (>= 5.0.0)
192
202
  minitest
193
203
  nokogiri (>= 1.6)
194
- rails-html-sanitizer (1.6.0)
204
+ rails-html-sanitizer (1.6.2)
195
205
  loofah (~> 2.21)
196
- nokogiri (~> 1.14)
197
- railties (7.1.3.4)
198
- actionpack (= 7.1.3.4)
199
- activesupport (= 7.1.3.4)
200
- irb
206
+ 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)
207
+ railties (8.1.1)
208
+ actionpack (= 8.1.1)
209
+ activesupport (= 8.1.1)
210
+ irb (~> 1.13)
201
211
  rackup (>= 1.0.0)
202
212
  rake (>= 12.2)
203
213
  thor (~> 1.0, >= 1.2.2)
214
+ tsort (>= 0.2)
204
215
  zeitwerk (~> 2.6)
205
- rake (13.2.1)
206
- rdoc (6.7.0)
216
+ rake (13.3.1)
217
+ rdoc (6.15.1)
218
+ erb
207
219
  psych (>= 4.0.0)
208
- reline (0.5.9)
220
+ tsort
221
+ reline (0.6.3)
209
222
  io-console (~> 0.5)
210
- rexml (3.3.1)
211
- strscan
212
- rspec (3.13.0)
213
- rspec-core (~> 3.13.0)
214
- rspec-expectations (~> 3.13.0)
215
- rspec-mocks (~> 3.13.0)
216
- rspec-core (3.13.0)
217
- rspec-support (~> 3.13.0)
218
- rspec-expectations (3.13.1)
219
- diff-lcs (>= 1.2.0, < 2.0)
220
- rspec-support (~> 3.13.0)
221
- rspec-mocks (3.13.1)
222
- diff-lcs (>= 1.2.0, < 2.0)
223
- rspec-support (~> 3.13.0)
224
- rspec-support (3.13.1)
225
- savon (2.15.0)
223
+ rexml (3.4.4)
224
+ savon (2.15.1)
226
225
  akami (~> 1.2)
227
226
  builder (>= 2.1.2)
228
227
  gyoku (~> 1.2)
229
- httpi (>= 2.4.5, < 5)
228
+ httpi (>= 4, < 5)
230
229
  mail (~> 2.5)
231
230
  nokogiri (>= 1.8.1)
232
231
  nori (~> 2.4)
233
232
  wasabi (>= 3.7, < 6)
234
- sqlite3 (1.4.2)
235
- stringio (3.1.1)
236
- strscan (3.1.0)
237
- thor (1.3.1)
238
- timeout (0.4.1)
233
+ securerandom (0.4.1)
234
+ sqlite3 (2.8.0-x86_64-linux-gnu)
235
+ stringio (3.1.7)
236
+ thor (1.4.0)
237
+ timeout (0.4.4)
238
+ tsort (0.2.0)
239
239
  tzinfo (2.0.6)
240
240
  concurrent-ruby (~> 1.0)
241
- uri (0.13.0)
242
- wasabi (5.0.2)
241
+ uri (1.1.1)
242
+ useragent (0.16.11)
243
+ wasabi (5.1.0)
243
244
  addressable
244
- faraday (~> 2.8)
245
+ faraday (>= 1.9, < 3)
245
246
  nokogiri (>= 1.13.9)
246
247
  wash_out (0.12.0)
247
248
  nori (>= 2.0.0)
248
- webmock (3.23.1)
249
+ webmock (3.26.1)
249
250
  addressable (>= 2.8.0)
250
251
  crack (>= 0.3.2)
251
252
  hashdiff (>= 0.4.0, < 2.0.0)
252
- webrick (1.8.1)
253
- websocket-driver (0.7.6)
253
+ websocket-driver (0.8.0)
254
+ base64
254
255
  websocket-extensions (>= 0.1.0)
255
256
  websocket-extensions (0.1.5)
256
- zeitwerk (2.6.16)
257
+ zeitwerk (2.7.3)
257
258
 
258
259
  PLATFORMS
259
260
  x86_64-linux
@@ -265,9 +266,8 @@ DEPENDENCIES
265
266
  httpi
266
267
  minitest
267
268
  qbwc!
268
- rails (>= 5.0.1, < 7.2)
269
+ rails (>= 5.0.1, < 8.2)
269
270
  rake
270
- rspec
271
271
  savon
272
272
  sqlite3
273
273
  webmock
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- qbwc (1.1.0)
4
+ qbwc (1.3.0)
5
5
  actionpack (>= 5.0.1)
6
6
  qbxml (>= 0.3.0)
7
7
  wash_out (>= 0.12.0)
@@ -65,7 +65,6 @@ GEM
65
65
  rexml
66
66
  crass (1.0.6)
67
67
  date (3.4.1)
68
- diff-lcs (1.6.0)
69
68
  erubi (1.13.1)
70
69
  globalid (1.1.0)
71
70
  activesupport (>= 5.0)
@@ -141,19 +140,6 @@ GEM
141
140
  thor (>= 0.18.1, < 2.0)
142
141
  rake (13.2.1)
143
142
  rexml (3.4.1)
144
- rspec (3.13.0)
145
- rspec-core (~> 3.13.0)
146
- rspec-expectations (~> 3.13.0)
147
- rspec-mocks (~> 3.13.0)
148
- rspec-core (3.13.3)
149
- rspec-support (~> 3.13.0)
150
- rspec-expectations (3.13.3)
151
- diff-lcs (>= 1.2.0, < 2.0)
152
- rspec-support (~> 3.13.0)
153
- rspec-mocks (3.13.2)
154
- diff-lcs (>= 1.2.0, < 2.0)
155
- rspec-support (~> 3.13.0)
156
- rspec-support (3.13.2)
157
143
  savon (2.15.0)
158
144
  akami (~> 1.2)
159
145
  builder (>= 2.1.2)
@@ -206,9 +192,8 @@ DEPENDENCIES
206
192
  httpi
207
193
  minitest
208
194
  qbwc!
209
- rails (>= 5.0.1, < 7.2)
195
+ rails (>= 5.0.1, < 8.2)
210
196
  rake
211
- rspec
212
197
  savon
213
198
  sqlite3
214
199
  webmock
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- qbwc (1.1.0)
4
+ qbwc (1.3.0)
5
5
  actionpack (>= 5.0.1)
6
6
  qbxml (>= 0.3.0)
7
7
  wash_out (>= 0.12.0)
@@ -70,7 +70,6 @@ GEM
70
70
  rexml
71
71
  crass (1.0.6)
72
72
  date (3.4.1)
73
- diff-lcs (1.6.0)
74
73
  erubi (1.13.1)
75
74
  globalid (1.1.0)
76
75
  activesupport (>= 5.0)
@@ -148,19 +147,6 @@ GEM
148
147
  thor (>= 0.19.0, < 2.0)
149
148
  rake (13.2.1)
150
149
  rexml (3.4.1)
151
- rspec (3.13.0)
152
- rspec-core (~> 3.13.0)
153
- rspec-expectations (~> 3.13.0)
154
- rspec-mocks (~> 3.13.0)
155
- rspec-core (3.13.3)
156
- rspec-support (~> 3.13.0)
157
- rspec-expectations (3.13.3)
158
- diff-lcs (>= 1.2.0, < 2.0)
159
- rspec-support (~> 3.13.0)
160
- rspec-mocks (3.13.2)
161
- diff-lcs (>= 1.2.0, < 2.0)
162
- rspec-support (~> 3.13.0)
163
- rspec-support (3.13.2)
164
150
  savon (2.15.0)
165
151
  akami (~> 1.2)
166
152
  builder (>= 2.1.2)
@@ -214,9 +200,8 @@ DEPENDENCIES
214
200
  httpi
215
201
  minitest
216
202
  qbwc!
217
- rails (>= 5.0.1, < 7.2)
203
+ rails (>= 5.0.1, < 8.2)
218
204
  rake
219
- rspec
220
205
  savon
221
206
  sqlite3
222
207
  webmock
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- qbwc (1.1.0)
4
+ qbwc (1.3.0)
5
5
  actionpack (>= 5.0.1)
6
6
  qbxml (>= 0.3.0)
7
7
  wash_out (>= 0.12.0)
@@ -83,7 +83,6 @@ GEM
83
83
  rexml
84
84
  crass (1.0.6)
85
85
  date (3.4.1)
86
- diff-lcs (1.6.0)
87
86
  erubi (1.13.1)
88
87
  globalid (1.1.0)
89
88
  activesupport (>= 5.0)
@@ -163,19 +162,6 @@ GEM
163
162
  thor (>= 0.20.3, < 2.0)
164
163
  rake (13.2.1)
165
164
  rexml (3.4.1)
166
- rspec (3.13.0)
167
- rspec-core (~> 3.13.0)
168
- rspec-expectations (~> 3.13.0)
169
- rspec-mocks (~> 3.13.0)
170
- rspec-core (3.13.3)
171
- rspec-support (~> 3.13.0)
172
- rspec-expectations (3.13.3)
173
- diff-lcs (>= 1.2.0, < 2.0)
174
- rspec-support (~> 3.13.0)
175
- rspec-mocks (3.13.2)
176
- diff-lcs (>= 1.2.0, < 2.0)
177
- rspec-support (~> 3.13.0)
178
- rspec-support (3.13.2)
179
165
  savon (2.15.0)
180
166
  akami (~> 1.2)
181
167
  builder (>= 2.1.2)
@@ -230,9 +216,8 @@ DEPENDENCIES
230
216
  httpi
231
217
  minitest
232
218
  qbwc!
233
- rails (>= 5.0.1, < 7.2)
219
+ rails (>= 5.0.1, < 8.2)
234
220
  rake
235
- rspec
236
221
  savon
237
222
  sqlite3
238
223
  webmock