qbwc 1.2.0 → 2.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.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +5 -41
- data/Appraisals +12 -29
- data/CHANGELOG.md +17 -0
- data/Gemfile.lock +152 -147
- data/gemfiles/rails_7.1.gemfile.lock +10 -24
- data/gemfiles/{rails_6.0.gemfile → rails_7.2.gemfile} +2 -3
- data/gemfiles/rails_7.2.gemfile.lock +273 -0
- data/gemfiles/{rails_5.1.gemfile → rails_8.0.gemfile} +2 -3
- data/gemfiles/rails_8.0.gemfile.lock +303 -0
- data/gemfiles/{rails_6.1.gemfile → rails_8.1.gemfile} +2 -3
- data/gemfiles/rails_8.1.gemfile.lock +278 -0
- data/lib/qbwc/active_record/job.rb +7 -3
- data/lib/qbwc/version.rb +1 -1
- data/lib/qbwc.rb +6 -1
- data/qbwc.gemspec +3 -4
- metadata +14 -36
- data/.rspec +0 -2
- data/gemfiles/rails_5.1.gemfile.lock +0 -217
- data/gemfiles/rails_5.2.gemfile +0 -9
- data/gemfiles/rails_5.2.gemfile.lock +0 -225
- data/gemfiles/rails_6.0.gemfile.lock +0 -241
- data/gemfiles/rails_6.1.gemfile.lock +0 -244
- data/gemfiles/rails_7.0.gemfile +0 -9
- data/gemfiles/rails_7.0.gemfile.lock +0 -243
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ec06b432c7bc1ca049a04adeff60c7c413a2ccb71fa90c370d05c3b20f38fd5
|
|
4
|
+
data.tar.gz: 89a4062d8e2b2c253f4ceeaf9aee878a28bfa1605150075f10c5553cc1a8fff6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d65b8ba972ee8f0f37aeb09844b05923e75161b81c0ed01176a2441c4477f54bfc9fc0b5bd8c47ec2feb8a084207bf51644973f0ed525f94005df9156f6641b0
|
|
7
|
+
data.tar.gz: 23ec752105e067e4a7c66e0c40ed391e1af03136cb16b3c878c3edb89f5948e838fd91f5f5ecf96d3ec9fbbd8c799ec0587073de9e0cdf8e68385fcc1b71f6f1
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -10,51 +10,15 @@ jobs:
|
|
|
10
10
|
fail-fast: false
|
|
11
11
|
matrix:
|
|
12
12
|
ruby-version:
|
|
13
|
-
- 2.7
|
|
14
|
-
- '3.0'
|
|
15
|
-
- 3.1
|
|
16
13
|
- 3.2
|
|
17
14
|
- 3.3
|
|
15
|
+
- 3.4
|
|
16
|
+
- '4.0'
|
|
18
17
|
rails-version:
|
|
19
|
-
- 5.1
|
|
20
|
-
- 5.2
|
|
21
|
-
- '6.0'
|
|
22
|
-
- 6.1
|
|
23
|
-
- '7.0'
|
|
24
18
|
- 7.1
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
- ruby-version: 3.0
|
|
29
|
-
rails-version: 5.1
|
|
30
|
-
- ruby-version: 3.0
|
|
31
|
-
rails-version: 5.2
|
|
32
|
-
- ruby-version: 3.0
|
|
33
|
-
rails-version: 7.1
|
|
34
|
-
- ruby-version: 3.1
|
|
35
|
-
rails-version: 5.1
|
|
36
|
-
- ruby-version: 3.1
|
|
37
|
-
rails-version: 5.2
|
|
38
|
-
- ruby-version: 3.1
|
|
39
|
-
rails-version: 7.1
|
|
40
|
-
- ruby-version: 3.2
|
|
41
|
-
rails-version: 5.1
|
|
42
|
-
- ruby-version: 3.2
|
|
43
|
-
rails-version: 5.2
|
|
44
|
-
- ruby-version: 3.2
|
|
45
|
-
rails-version: 6.0
|
|
46
|
-
- ruby-version: 3.2
|
|
47
|
-
rails-version: 6.1
|
|
48
|
-
- ruby-version: 3.3
|
|
49
|
-
rails-version: 5.1
|
|
50
|
-
- ruby-version: 3.3
|
|
51
|
-
rails-version: 5.2
|
|
52
|
-
- ruby-version: 3.3
|
|
53
|
-
rails-version: 6.0
|
|
54
|
-
- ruby-version: 3.3
|
|
55
|
-
rails-version: 6.1
|
|
56
|
-
- ruby-version: 3.3
|
|
57
|
-
rails-version: 7.0
|
|
19
|
+
- 7.2
|
|
20
|
+
- '8.0'
|
|
21
|
+
- 8.1
|
|
58
22
|
env:
|
|
59
23
|
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
|
|
60
24
|
steps:
|
data/Appraisals
CHANGED
|
@@ -1,36 +1,19 @@
|
|
|
1
|
-
appraise "rails-
|
|
2
|
-
gem "actionpack", "~>
|
|
3
|
-
gem "actionview", "~>
|
|
4
|
-
gem 'concurrent-ruby', '1.3.4'
|
|
5
|
-
end
|
|
6
|
-
|
|
7
|
-
appraise "rails-5.2" do
|
|
8
|
-
gem "actionpack", "~> 5.2.0"
|
|
9
|
-
gem "actionview", "~> 5.2.0"
|
|
10
|
-
gem 'concurrent-ruby', '1.3.4'
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
# Ruby 3.0+ is functional from this point on
|
|
14
|
-
appraise "rails-6.0" do
|
|
15
|
-
gem "actionpack", "~> 6.0.0"
|
|
16
|
-
gem "actionview", "~> 6.0.0"
|
|
17
|
-
gem 'concurrent-ruby', '1.3.4'
|
|
1
|
+
appraise "rails-7.1" do
|
|
2
|
+
gem "actionpack", "~> 7.1.0"
|
|
3
|
+
gem "actionview", "~> 7.1.0"
|
|
18
4
|
end
|
|
19
5
|
|
|
20
|
-
appraise "rails-
|
|
21
|
-
gem "actionpack", "~>
|
|
22
|
-
gem "actionview", "~>
|
|
23
|
-
gem 'concurrent-ruby', '1.3.4'
|
|
6
|
+
appraise "rails-7.2" do
|
|
7
|
+
gem "actionpack", "~> 7.2.0"
|
|
8
|
+
gem "actionview", "~> 7.2.0"
|
|
24
9
|
end
|
|
25
10
|
|
|
26
|
-
appraise "rails-
|
|
27
|
-
gem "actionpack", "~>
|
|
28
|
-
gem "actionview", "~>
|
|
29
|
-
gem 'concurrent-ruby', '1.3.4'
|
|
11
|
+
appraise "rails-8.0" do
|
|
12
|
+
gem "actionpack", "~> 8.0.0"
|
|
13
|
+
gem "actionview", "~> 8.0.0"
|
|
30
14
|
end
|
|
31
15
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
gem "
|
|
35
|
-
gem "actionview", "~> 7.1.0"
|
|
16
|
+
appraise "rails-8.1" do
|
|
17
|
+
gem "actionpack", "~> 8.1.0"
|
|
18
|
+
gem "actionview", "~> 8.1.0"
|
|
36
19
|
end
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
|
|
2
2
|
# Change Log
|
|
3
3
|
|
|
4
|
+
## [2.0.0](https://github.com/qbwc/qbwc/releases/tag/v2.0.0) (2026-03-31)
|
|
5
|
+
[Full Changelog](https://github.com/qbwc/qbwc/compare/1.3.0...2.0.0)
|
|
6
|
+
|
|
7
|
+
- Add support for Ruby 4.0.
|
|
8
|
+
- Drop support for Ruby prior to 3.2.
|
|
9
|
+
- Drop support for Rails prior to 7.1.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [1.3.0](https://github.com/qbwc/qbwc/releases/tag/v1.3.0) (2025-03-19)
|
|
13
|
+
[Full Changelog](https://github.com/qbwc/qbwc/compare/1.2.0...1.3.0)
|
|
14
|
+
|
|
15
|
+
**Fixed bugs:**
|
|
16
|
+
|
|
17
|
+
- 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.
|
|
18
|
+
- Support Ruby 3.4.
|
|
19
|
+
- Support Rails 7.2, 8.0, and 8.1.
|
|
20
|
+
|
|
4
21
|
## [1.2.0](https://github.com/qbwc/qbwc/releases/tag/v1.2.0) (2025-03-19)
|
|
5
22
|
[Full Changelog](https://github.com/qbwc/qbwc/compare/1.1.0...1.2.0)
|
|
6
23
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
qbwc (
|
|
5
|
-
actionpack (>=
|
|
4
|
+
qbwc (2.0.0)
|
|
5
|
+
actionpack (>= 7.1)
|
|
6
6
|
qbxml (>= 0.3.0)
|
|
7
7
|
wash_out (>= 0.12.0)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
|
11
11
|
specs:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
action_text-trix (2.1.17)
|
|
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 (
|
|
19
|
-
actionpack (=
|
|
20
|
-
activejob (=
|
|
21
|
-
activerecord (=
|
|
22
|
-
activestorage (=
|
|
23
|
-
activesupport (=
|
|
24
|
-
mail (>= 2.
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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 (
|
|
39
|
-
actionview (=
|
|
40
|
-
activesupport (=
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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 (
|
|
56
|
-
activesupport (=
|
|
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 (
|
|
62
|
-
activesupport (=
|
|
58
|
+
activejob (8.1.1)
|
|
59
|
+
activesupport (= 8.1.1)
|
|
63
60
|
globalid (>= 0.3.6)
|
|
64
|
-
activemodel (
|
|
65
|
-
activesupport (=
|
|
66
|
-
activerecord (
|
|
67
|
-
activemodel (=
|
|
68
|
-
activesupport (=
|
|
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 (
|
|
71
|
-
actionpack (=
|
|
72
|
-
activejob (=
|
|
73
|
-
activerecord (=
|
|
74
|
-
activesupport (=
|
|
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 (
|
|
73
|
+
activesupport (8.1.1)
|
|
77
74
|
base64
|
|
78
75
|
bigdecimal
|
|
79
|
-
concurrent-ruby (~> 1.0, >= 1.
|
|
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
|
-
|
|
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,173 @@ GEM
|
|
|
93
93
|
bundler
|
|
94
94
|
rake
|
|
95
95
|
thor (>= 0.14.0)
|
|
96
|
-
base64 (0.
|
|
97
|
-
bigdecimal (
|
|
96
|
+
base64 (0.3.0)
|
|
97
|
+
bigdecimal (4.1.0)
|
|
98
98
|
builder (3.3.0)
|
|
99
|
-
byebug (
|
|
100
|
-
concurrent-ruby (1.3.
|
|
101
|
-
connection_pool (
|
|
102
|
-
crack (1.0.
|
|
99
|
+
byebug (12.0.0)
|
|
100
|
+
concurrent-ruby (1.3.6)
|
|
101
|
+
connection_pool (3.0.2)
|
|
102
|
+
crack (1.0.1)
|
|
103
103
|
bigdecimal
|
|
104
104
|
rexml
|
|
105
105
|
crass (1.0.6)
|
|
106
|
-
date (3.
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
erubi (1.13.
|
|
110
|
-
faraday (2.
|
|
111
|
-
faraday-net_http (>= 2.0, < 3.
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
106
|
+
date (3.5.1)
|
|
107
|
+
drb (2.2.3)
|
|
108
|
+
erb (6.0.2)
|
|
109
|
+
erubi (1.13.1)
|
|
110
|
+
faraday (2.14.1)
|
|
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
|
|
120
|
-
httpi (4.0.
|
|
121
|
+
hashdiff (1.2.1)
|
|
122
|
+
httpi (4.0.4)
|
|
121
123
|
base64
|
|
122
124
|
mutex_m
|
|
123
125
|
nkf
|
|
124
|
-
rack (>= 2.0, <
|
|
125
|
-
i18n (1.14.
|
|
126
|
+
rack (>= 2.0, < 4)
|
|
127
|
+
i18n (1.14.8)
|
|
126
128
|
concurrent-ruby (~> 1.0)
|
|
127
|
-
io-console (0.
|
|
128
|
-
irb (1.
|
|
129
|
+
io-console (0.8.2)
|
|
130
|
+
irb (1.17.0)
|
|
131
|
+
pp (>= 0.6.0)
|
|
132
|
+
prism (>= 1.3.0)
|
|
129
133
|
rdoc (>= 4.0.0)
|
|
130
134
|
reline (>= 0.4.2)
|
|
131
|
-
|
|
135
|
+
json (2.19.3)
|
|
136
|
+
logger (1.7.0)
|
|
137
|
+
loofah (2.25.1)
|
|
132
138
|
crass (~> 1.0.2)
|
|
133
139
|
nokogiri (>= 1.12.0)
|
|
134
|
-
mail (2.
|
|
140
|
+
mail (2.9.0)
|
|
141
|
+
logger
|
|
135
142
|
mini_mime (>= 0.1.1)
|
|
136
143
|
net-imap
|
|
137
144
|
net-pop
|
|
138
145
|
net-smtp
|
|
139
|
-
marcel (1.0
|
|
146
|
+
marcel (1.1.0)
|
|
140
147
|
mini_mime (1.1.5)
|
|
141
|
-
minitest (
|
|
148
|
+
minitest (6.0.3)
|
|
149
|
+
drb (~> 2.0)
|
|
150
|
+
prism (~> 1.5)
|
|
142
151
|
mutex_m (0.3.0)
|
|
143
|
-
net-http (0.
|
|
144
|
-
uri
|
|
145
|
-
net-imap (0.
|
|
152
|
+
net-http (0.9.1)
|
|
153
|
+
uri (>= 0.11.1)
|
|
154
|
+
net-imap (0.5.12)
|
|
146
155
|
date
|
|
147
156
|
net-protocol
|
|
148
157
|
net-pop (0.1.2)
|
|
149
158
|
net-protocol
|
|
150
159
|
net-protocol (0.2.2)
|
|
151
160
|
timeout
|
|
152
|
-
net-smtp (0.5.
|
|
161
|
+
net-smtp (0.5.1)
|
|
153
162
|
net-protocol
|
|
154
|
-
nio4r (2.7.
|
|
163
|
+
nio4r (2.7.5)
|
|
155
164
|
nkf (0.2.0)
|
|
156
|
-
nokogiri (1.
|
|
165
|
+
nokogiri (1.19.2-x86_64-linux-gnu)
|
|
157
166
|
racc (~> 1.4)
|
|
158
|
-
nori (2.7.
|
|
167
|
+
nori (2.7.1)
|
|
159
168
|
bigdecimal
|
|
160
|
-
|
|
169
|
+
pp (0.6.3)
|
|
170
|
+
prettyprint
|
|
171
|
+
prettyprint (0.2.0)
|
|
172
|
+
prism (1.9.0)
|
|
173
|
+
psych (5.3.1)
|
|
174
|
+
date
|
|
161
175
|
stringio
|
|
162
|
-
public_suffix (6.0.
|
|
163
|
-
qbxml (0.
|
|
164
|
-
activesupport (>=
|
|
176
|
+
public_suffix (6.0.2)
|
|
177
|
+
qbxml (1.0.0)
|
|
178
|
+
activesupport (>= 7.1.0)
|
|
179
|
+
bigdecimal
|
|
165
180
|
builder (~> 3.0)
|
|
166
181
|
nokogiri (~> 1.5)
|
|
167
182
|
racc (1.8.1)
|
|
168
|
-
rack (3.
|
|
169
|
-
rack-session (2.
|
|
183
|
+
rack (3.2.5)
|
|
184
|
+
rack-session (2.1.1)
|
|
185
|
+
base64 (>= 0.1.0)
|
|
170
186
|
rack (>= 3.0.0)
|
|
171
|
-
rack-test (2.
|
|
187
|
+
rack-test (2.2.0)
|
|
172
188
|
rack (>= 1.3)
|
|
173
|
-
rackup (2.1
|
|
189
|
+
rackup (2.3.1)
|
|
174
190
|
rack (>= 3)
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
activesupport (= 7.1.3.4)
|
|
191
|
+
rails (8.1.1)
|
|
192
|
+
actioncable (= 8.1.1)
|
|
193
|
+
actionmailbox (= 8.1.1)
|
|
194
|
+
actionmailer (= 8.1.1)
|
|
195
|
+
actionpack (= 8.1.1)
|
|
196
|
+
actiontext (= 8.1.1)
|
|
197
|
+
actionview (= 8.1.1)
|
|
198
|
+
activejob (= 8.1.1)
|
|
199
|
+
activemodel (= 8.1.1)
|
|
200
|
+
activerecord (= 8.1.1)
|
|
201
|
+
activestorage (= 8.1.1)
|
|
202
|
+
activesupport (= 8.1.1)
|
|
188
203
|
bundler (>= 1.15.0)
|
|
189
|
-
railties (=
|
|
190
|
-
rails-dom-testing (2.
|
|
204
|
+
railties (= 8.1.1)
|
|
205
|
+
rails-dom-testing (2.3.0)
|
|
191
206
|
activesupport (>= 5.0.0)
|
|
192
207
|
minitest
|
|
193
208
|
nokogiri (>= 1.6)
|
|
194
|
-
rails-html-sanitizer (1.
|
|
195
|
-
loofah (~> 2.
|
|
196
|
-
nokogiri (
|
|
197
|
-
railties (
|
|
198
|
-
actionpack (=
|
|
199
|
-
activesupport (=
|
|
200
|
-
irb
|
|
209
|
+
rails-html-sanitizer (1.7.0)
|
|
210
|
+
loofah (~> 2.25)
|
|
211
|
+
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)
|
|
212
|
+
railties (8.1.1)
|
|
213
|
+
actionpack (= 8.1.1)
|
|
214
|
+
activesupport (= 8.1.1)
|
|
215
|
+
irb (~> 1.13)
|
|
201
216
|
rackup (>= 1.0.0)
|
|
202
217
|
rake (>= 12.2)
|
|
203
218
|
thor (~> 1.0, >= 1.2.2)
|
|
219
|
+
tsort (>= 0.2)
|
|
204
220
|
zeitwerk (~> 2.6)
|
|
205
|
-
rake (13.
|
|
206
|
-
rdoc (
|
|
221
|
+
rake (13.3.1)
|
|
222
|
+
rdoc (7.2.0)
|
|
223
|
+
erb
|
|
207
224
|
psych (>= 4.0.0)
|
|
208
|
-
|
|
225
|
+
tsort
|
|
226
|
+
reline (0.6.3)
|
|
209
227
|
io-console (~> 0.5)
|
|
210
|
-
rexml (3.
|
|
211
|
-
|
|
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)
|
|
228
|
+
rexml (3.4.4)
|
|
229
|
+
savon (2.15.1)
|
|
226
230
|
akami (~> 1.2)
|
|
227
231
|
builder (>= 2.1.2)
|
|
228
232
|
gyoku (~> 1.2)
|
|
229
|
-
httpi (>=
|
|
233
|
+
httpi (>= 4, < 5)
|
|
230
234
|
mail (~> 2.5)
|
|
231
235
|
nokogiri (>= 1.8.1)
|
|
232
236
|
nori (~> 2.4)
|
|
233
237
|
wasabi (>= 3.7, < 6)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
thor (1.
|
|
238
|
-
timeout (0.4.
|
|
238
|
+
securerandom (0.4.1)
|
|
239
|
+
sqlite3 (2.9.2-x86_64-linux-gnu)
|
|
240
|
+
stringio (3.2.0)
|
|
241
|
+
thor (1.5.0)
|
|
242
|
+
timeout (0.4.4)
|
|
243
|
+
tsort (0.2.0)
|
|
239
244
|
tzinfo (2.0.6)
|
|
240
245
|
concurrent-ruby (~> 1.0)
|
|
241
|
-
uri (
|
|
242
|
-
|
|
246
|
+
uri (1.1.1)
|
|
247
|
+
useragent (0.16.11)
|
|
248
|
+
wasabi (5.1.0)
|
|
243
249
|
addressable
|
|
244
|
-
faraday (
|
|
250
|
+
faraday (>= 1.9, < 3)
|
|
245
251
|
nokogiri (>= 1.13.9)
|
|
246
252
|
wash_out (0.12.0)
|
|
247
253
|
nori (>= 2.0.0)
|
|
248
|
-
webmock (3.
|
|
254
|
+
webmock (3.26.1)
|
|
249
255
|
addressable (>= 2.8.0)
|
|
250
256
|
crack (>= 0.3.2)
|
|
251
257
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
252
|
-
|
|
253
|
-
|
|
258
|
+
websocket-driver (0.8.0)
|
|
259
|
+
base64
|
|
254
260
|
websocket-extensions (>= 0.1.0)
|
|
255
261
|
websocket-extensions (0.1.5)
|
|
256
|
-
zeitwerk (2.
|
|
262
|
+
zeitwerk (2.7.5)
|
|
257
263
|
|
|
258
264
|
PLATFORMS
|
|
259
265
|
x86_64-linux
|
|
@@ -265,9 +271,8 @@ DEPENDENCIES
|
|
|
265
271
|
httpi
|
|
266
272
|
minitest
|
|
267
273
|
qbwc!
|
|
268
|
-
rails (>= 5.0.1, <
|
|
274
|
+
rails (>= 5.0.1, < 8.2)
|
|
269
275
|
rake
|
|
270
|
-
rspec
|
|
271
276
|
savon
|
|
272
277
|
sqlite3
|
|
273
278
|
webmock
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
qbwc (1.
|
|
5
|
-
actionpack (>=
|
|
4
|
+
qbwc (1.3.0)
|
|
5
|
+
actionpack (>= 7.1)
|
|
6
6
|
qbxml (>= 0.3.0)
|
|
7
7
|
wash_out (>= 0.12.0)
|
|
8
8
|
|
|
@@ -108,7 +108,6 @@ GEM
|
|
|
108
108
|
rexml
|
|
109
109
|
crass (1.0.6)
|
|
110
110
|
date (3.4.1)
|
|
111
|
-
diff-lcs (1.6.0)
|
|
112
111
|
drb (2.2.1)
|
|
113
112
|
erubi (1.13.1)
|
|
114
113
|
faraday (2.12.2)
|
|
@@ -147,8 +146,9 @@ GEM
|
|
|
147
146
|
net-smtp
|
|
148
147
|
marcel (1.0.4)
|
|
149
148
|
mini_mime (1.1.5)
|
|
150
|
-
|
|
151
|
-
|
|
149
|
+
minitest (6.0.2)
|
|
150
|
+
drb (~> 2.0)
|
|
151
|
+
prism (~> 1.5)
|
|
152
152
|
mutex_m (0.3.0)
|
|
153
153
|
net-http (0.6.0)
|
|
154
154
|
uri
|
|
@@ -163,13 +163,14 @@ GEM
|
|
|
163
163
|
net-protocol
|
|
164
164
|
nio4r (2.7.4)
|
|
165
165
|
nkf (0.2.0)
|
|
166
|
-
nokogiri (1.
|
|
166
|
+
nokogiri (1.19.1-x86_64-linux-gnu)
|
|
167
167
|
racc (~> 1.4)
|
|
168
168
|
nori (2.7.1)
|
|
169
169
|
bigdecimal
|
|
170
170
|
pp (0.6.2)
|
|
171
171
|
prettyprint
|
|
172
172
|
prettyprint (0.2.0)
|
|
173
|
+
prism (1.9.0)
|
|
173
174
|
psych (5.2.3)
|
|
174
175
|
date
|
|
175
176
|
stringio
|
|
@@ -179,7 +180,7 @@ GEM
|
|
|
179
180
|
builder (~> 3.0)
|
|
180
181
|
nokogiri (~> 1.5)
|
|
181
182
|
racc (1.8.1)
|
|
182
|
-
rack (3.
|
|
183
|
+
rack (3.2.5)
|
|
183
184
|
rack-session (2.1.0)
|
|
184
185
|
base64 (>= 0.1.0)
|
|
185
186
|
rack (>= 3.0.0)
|
|
@@ -222,19 +223,6 @@ GEM
|
|
|
222
223
|
reline (0.6.0)
|
|
223
224
|
io-console (~> 0.5)
|
|
224
225
|
rexml (3.4.1)
|
|
225
|
-
rspec (3.13.0)
|
|
226
|
-
rspec-core (~> 3.13.0)
|
|
227
|
-
rspec-expectations (~> 3.13.0)
|
|
228
|
-
rspec-mocks (~> 3.13.0)
|
|
229
|
-
rspec-core (3.13.3)
|
|
230
|
-
rspec-support (~> 3.13.0)
|
|
231
|
-
rspec-expectations (3.13.3)
|
|
232
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
233
|
-
rspec-support (~> 3.13.0)
|
|
234
|
-
rspec-mocks (3.13.2)
|
|
235
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
236
|
-
rspec-support (~> 3.13.0)
|
|
237
|
-
rspec-support (3.13.2)
|
|
238
226
|
savon (2.15.1)
|
|
239
227
|
akami (~> 1.2)
|
|
240
228
|
builder (>= 2.1.2)
|
|
@@ -245,8 +233,7 @@ GEM
|
|
|
245
233
|
nori (~> 2.4)
|
|
246
234
|
wasabi (>= 3.7, < 6)
|
|
247
235
|
securerandom (0.3.2)
|
|
248
|
-
sqlite3 (2.
|
|
249
|
-
mini_portile2 (~> 2.8.0)
|
|
236
|
+
sqlite3 (2.9.2-x86_64-linux-gnu)
|
|
250
237
|
stringio (3.1.5)
|
|
251
238
|
thor (1.3.2)
|
|
252
239
|
timeout (0.4.3)
|
|
@@ -281,9 +268,8 @@ DEPENDENCIES
|
|
|
281
268
|
httpi
|
|
282
269
|
minitest
|
|
283
270
|
qbwc!
|
|
284
|
-
rails (>= 5.0.1, <
|
|
271
|
+
rails (>= 5.0.1, < 8.2)
|
|
285
272
|
rake
|
|
286
|
-
rspec
|
|
287
273
|
savon
|
|
288
274
|
sqlite3
|
|
289
275
|
webmock
|