qbwc 1.1.0 → 1.2.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 +5 -5
- data/.github/workflows/ci.yml +66 -0
- data/.gitignore +3 -2
- data/Appraisals +32 -6
- data/CHANGELOG.md +14 -1
- data/Gemfile.lock +276 -0
- data/README.md +1 -3
- data/Rakefile +1 -5
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5.1.gemfile +1 -0
- data/gemfiles/rails_5.1.gemfile.lock +217 -0
- data/gemfiles/rails_5.2.gemfile +9 -0
- data/gemfiles/rails_5.2.gemfile.lock +225 -0
- data/gemfiles/rails_6.0.gemfile +9 -0
- data/gemfiles/rails_6.0.gemfile.lock +241 -0
- data/gemfiles/rails_6.1.gemfile +9 -0
- data/gemfiles/rails_6.1.gemfile.lock +244 -0
- data/gemfiles/rails_7.0.gemfile +9 -0
- data/gemfiles/rails_7.0.gemfile.lock +243 -0
- data/gemfiles/{rails_5.0.gemfile → rails_7.1.gemfile} +2 -2
- data/gemfiles/rails_7.1.gemfile.lock +292 -0
- data/lib/qbwc/active_record/job.rb +10 -3
- data/lib/qbwc/controller.rb +2 -2
- data/lib/qbwc/session.rb +3 -2
- data/lib/qbwc/version.rb +1 -1
- data/qbwc.gemspec +2 -1
- data/test/qbwc/controllers/controller_test.rb +1 -0
- data/test/qbwc/integration/savon_client_test.rb +1 -1
- data/test/qbwc/integration/session_test.rb +0 -4
- data/test/test_helper.rb +15 -5
- metadata +40 -9
- data/.travis.yml +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4df3ae87a0c50c2c850c9730d698ec6bd32baa591abef90b4547cd52742e2542
|
4
|
+
data.tar.gz: 632a89f9a5f4ea775085bcfa9e9f5b2a0623276bc94173aac9d6fad522b72314
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f38af1707f748f08e51ebd27ec0086ec6a9b776501a764c9258065bc459fce29161d225b6f0918c7a335b0bbd194e641e31871aa30803c8f278d1edb9ade95fc
|
7
|
+
data.tar.gz: dd8250ecf3df63f29d629e86adaf89764099cc7513a106a6f4fadef0bd18909003aae5759bffc8a609a4bcde5cdcd56fa4336a7e91ff601bd34203fa6d92fa05
|
@@ -0,0 +1,66 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
- push
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
test:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
strategy:
|
10
|
+
fail-fast: false
|
11
|
+
matrix:
|
12
|
+
ruby-version:
|
13
|
+
- 2.7
|
14
|
+
- '3.0'
|
15
|
+
- 3.1
|
16
|
+
- 3.2
|
17
|
+
- 3.3
|
18
|
+
rails-version:
|
19
|
+
- 5.1
|
20
|
+
- 5.2
|
21
|
+
- '6.0'
|
22
|
+
- 6.1
|
23
|
+
- '7.0'
|
24
|
+
- 7.1
|
25
|
+
exclude:
|
26
|
+
- ruby-version: 2.7
|
27
|
+
rails-version: 7.1
|
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
|
58
|
+
env:
|
59
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
|
60
|
+
steps:
|
61
|
+
- uses: actions/checkout@v3
|
62
|
+
- uses: ruby/setup-ruby@v1
|
63
|
+
with:
|
64
|
+
ruby-version: "${{ matrix.ruby-version }}"
|
65
|
+
bundler-cache: true
|
66
|
+
- run: bundle exec rake
|
data/.gitignore
CHANGED
data/Appraisals
CHANGED
@@ -1,10 +1,36 @@
|
|
1
|
-
appraise "rails-5.0" do
|
2
|
-
# At least 5.0.1 due to test failures - https://github.com/rails/rails/pull/25950
|
3
|
-
gem "actionpack", "~> 5.0.1"
|
4
|
-
gem "actionview", "~> 5.0.1"
|
5
|
-
end
|
6
|
-
|
7
1
|
appraise "rails-5.1" do
|
8
2
|
gem "actionpack", "~> 5.1.1"
|
9
3
|
gem "actionview", "~> 5.1.1"
|
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'
|
18
|
+
end
|
19
|
+
|
20
|
+
appraise "rails-6.1" do
|
21
|
+
gem "actionpack", "~> 6.1.0"
|
22
|
+
gem "actionview", "~> 6.1.0"
|
23
|
+
gem 'concurrent-ruby', '1.3.4'
|
24
|
+
end
|
25
|
+
|
26
|
+
appraise "rails-7.0" do
|
27
|
+
gem "actionpack", "~> 7.0.0"
|
28
|
+
gem "actionview", "~> 7.0.0"
|
29
|
+
gem 'concurrent-ruby', '1.3.4'
|
30
|
+
end
|
31
|
+
|
32
|
+
# Ruby 3.0+ is required from this point on
|
33
|
+
appraise "rails-7.1" do
|
34
|
+
gem "actionpack", "~> 7.1.0"
|
35
|
+
gem "actionview", "~> 7.1.0"
|
10
36
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,20 @@
|
|
1
1
|
|
2
2
|
# Change Log
|
3
3
|
|
4
|
-
## [1.
|
4
|
+
## [1.2.0](https://github.com/qbwc/qbwc/releases/tag/v1.2.0) (2025-03-19)
|
5
|
+
[Full Changelog](https://github.com/qbwc/qbwc/compare/1.1.0...1.2.0)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Support Ruby 2.7 through 3.3.
|
10
|
+
- Support Rails 5.1 through 7.1.
|
11
|
+
- Prevent collisions in session tickets by using a random UUID instead of a timestamp. [\#126](https://github.com/qbwc/qbwc/pull/126)
|
12
|
+
|
13
|
+
**New features:**
|
14
|
+
|
15
|
+
- Save `requestID` in session. [\#132](https://github.com/qbwc/qbwc/pull/132)
|
16
|
+
|
17
|
+
## [1.1.0](https://github.com/qbwc/qbwc/releases/tag/v1.1.0) (2017-12-08)
|
5
18
|
[Full Changelog](https://github.com/qbwc/qbwc/compare/1.0.0...1.1.0)
|
6
19
|
|
7
20
|
**Fixed bugs:**
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,276 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
qbwc (1.2.0)
|
5
|
+
actionpack (>= 5.0.1)
|
6
|
+
qbxml (>= 0.3.0)
|
7
|
+
wash_out (>= 0.12.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (7.1.3.4)
|
13
|
+
actionpack (= 7.1.3.4)
|
14
|
+
activesupport (= 7.1.3.4)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
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
|
37
|
+
rails-dom-testing (~> 2.2)
|
38
|
+
actionpack (7.1.3.4)
|
39
|
+
actionview (= 7.1.3.4)
|
40
|
+
activesupport (= 7.1.3.4)
|
41
|
+
nokogiri (>= 1.8.5)
|
42
|
+
racc
|
43
|
+
rack (>= 2.2.4)
|
44
|
+
rack-session (>= 1.0.1)
|
45
|
+
rack-test (>= 0.6.3)
|
46
|
+
rails-dom-testing (~> 2.2)
|
47
|
+
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)
|
53
|
+
globalid (>= 0.6.0)
|
54
|
+
nokogiri (>= 1.8.5)
|
55
|
+
actionview (7.1.3.4)
|
56
|
+
activesupport (= 7.1.3.4)
|
57
|
+
builder (~> 3.1)
|
58
|
+
erubi (~> 1.11)
|
59
|
+
rails-dom-testing (~> 2.2)
|
60
|
+
rails-html-sanitizer (~> 1.6)
|
61
|
+
activejob (7.1.3.4)
|
62
|
+
activesupport (= 7.1.3.4)
|
63
|
+
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)
|
69
|
+
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)
|
75
|
+
marcel (~> 1.0)
|
76
|
+
activesupport (7.1.3.4)
|
77
|
+
base64
|
78
|
+
bigdecimal
|
79
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
80
|
+
connection_pool (>= 2.2.5)
|
81
|
+
drb
|
82
|
+
i18n (>= 1.6, < 2)
|
83
|
+
minitest (>= 5.1)
|
84
|
+
mutex_m
|
85
|
+
tzinfo (~> 2.0)
|
86
|
+
addressable (2.8.7)
|
87
|
+
public_suffix (>= 2.0.2, < 7.0)
|
88
|
+
akami (1.3.3)
|
89
|
+
base64
|
90
|
+
gyoku (>= 0.4.0)
|
91
|
+
nokogiri
|
92
|
+
appraisal (2.5.0)
|
93
|
+
bundler
|
94
|
+
rake
|
95
|
+
thor (>= 0.14.0)
|
96
|
+
base64 (0.2.0)
|
97
|
+
bigdecimal (3.1.9)
|
98
|
+
builder (3.3.0)
|
99
|
+
byebug (11.1.3)
|
100
|
+
concurrent-ruby (1.3.5)
|
101
|
+
connection_pool (2.5.0)
|
102
|
+
crack (1.0.0)
|
103
|
+
bigdecimal
|
104
|
+
rexml
|
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)
|
115
|
+
activesupport (>= 6.1)
|
116
|
+
gyoku (1.4.0)
|
117
|
+
builder (>= 2.1.2)
|
118
|
+
rexml (~> 3.0)
|
119
|
+
hashdiff (1.1.0)
|
120
|
+
httpi (4.0.2)
|
121
|
+
base64
|
122
|
+
mutex_m
|
123
|
+
nkf
|
124
|
+
rack (>= 2.0, < 3.1)
|
125
|
+
i18n (1.14.7)
|
126
|
+
concurrent-ruby (~> 1.0)
|
127
|
+
io-console (0.7.2)
|
128
|
+
irb (1.13.2)
|
129
|
+
rdoc (>= 4.0.0)
|
130
|
+
reline (>= 0.4.2)
|
131
|
+
loofah (2.22.0)
|
132
|
+
crass (~> 1.0.2)
|
133
|
+
nokogiri (>= 1.12.0)
|
134
|
+
mail (2.8.1)
|
135
|
+
mini_mime (>= 0.1.1)
|
136
|
+
net-imap
|
137
|
+
net-pop
|
138
|
+
net-smtp
|
139
|
+
marcel (1.0.4)
|
140
|
+
mini_mime (1.1.5)
|
141
|
+
minitest (5.25.5)
|
142
|
+
mutex_m (0.3.0)
|
143
|
+
net-http (0.4.1)
|
144
|
+
uri
|
145
|
+
net-imap (0.4.14)
|
146
|
+
date
|
147
|
+
net-protocol
|
148
|
+
net-pop (0.1.2)
|
149
|
+
net-protocol
|
150
|
+
net-protocol (0.2.2)
|
151
|
+
timeout
|
152
|
+
net-smtp (0.5.0)
|
153
|
+
net-protocol
|
154
|
+
nio4r (2.7.3)
|
155
|
+
nkf (0.2.0)
|
156
|
+
nokogiri (1.18.4-x86_64-linux-gnu)
|
157
|
+
racc (~> 1.4)
|
158
|
+
nori (2.7.0)
|
159
|
+
bigdecimal
|
160
|
+
psych (5.1.2)
|
161
|
+
stringio
|
162
|
+
public_suffix (6.0.0)
|
163
|
+
qbxml (0.5.0)
|
164
|
+
activesupport (>= 5.0.0)
|
165
|
+
builder (~> 3.0)
|
166
|
+
nokogiri (~> 1.5)
|
167
|
+
racc (1.8.1)
|
168
|
+
rack (3.0.11)
|
169
|
+
rack-session (2.0.0)
|
170
|
+
rack (>= 3.0.0)
|
171
|
+
rack-test (2.1.0)
|
172
|
+
rack (>= 1.3)
|
173
|
+
rackup (2.1.0)
|
174
|
+
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)
|
188
|
+
bundler (>= 1.15.0)
|
189
|
+
railties (= 7.1.3.4)
|
190
|
+
rails-dom-testing (2.2.0)
|
191
|
+
activesupport (>= 5.0.0)
|
192
|
+
minitest
|
193
|
+
nokogiri (>= 1.6)
|
194
|
+
rails-html-sanitizer (1.6.0)
|
195
|
+
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
|
201
|
+
rackup (>= 1.0.0)
|
202
|
+
rake (>= 12.2)
|
203
|
+
thor (~> 1.0, >= 1.2.2)
|
204
|
+
zeitwerk (~> 2.6)
|
205
|
+
rake (13.2.1)
|
206
|
+
rdoc (6.7.0)
|
207
|
+
psych (>= 4.0.0)
|
208
|
+
reline (0.5.9)
|
209
|
+
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)
|
226
|
+
akami (~> 1.2)
|
227
|
+
builder (>= 2.1.2)
|
228
|
+
gyoku (~> 1.2)
|
229
|
+
httpi (>= 2.4.5, < 5)
|
230
|
+
mail (~> 2.5)
|
231
|
+
nokogiri (>= 1.8.1)
|
232
|
+
nori (~> 2.4)
|
233
|
+
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)
|
239
|
+
tzinfo (2.0.6)
|
240
|
+
concurrent-ruby (~> 1.0)
|
241
|
+
uri (0.13.0)
|
242
|
+
wasabi (5.0.2)
|
243
|
+
addressable
|
244
|
+
faraday (~> 2.8)
|
245
|
+
nokogiri (>= 1.13.9)
|
246
|
+
wash_out (0.12.0)
|
247
|
+
nori (>= 2.0.0)
|
248
|
+
webmock (3.23.1)
|
249
|
+
addressable (>= 2.8.0)
|
250
|
+
crack (>= 0.3.2)
|
251
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
252
|
+
webrick (1.8.1)
|
253
|
+
websocket-driver (0.7.6)
|
254
|
+
websocket-extensions (>= 0.1.0)
|
255
|
+
websocket-extensions (0.1.5)
|
256
|
+
zeitwerk (2.6.16)
|
257
|
+
|
258
|
+
PLATFORMS
|
259
|
+
x86_64-linux
|
260
|
+
|
261
|
+
DEPENDENCIES
|
262
|
+
activerecord
|
263
|
+
appraisal
|
264
|
+
byebug
|
265
|
+
httpi
|
266
|
+
minitest
|
267
|
+
qbwc!
|
268
|
+
rails (>= 5.0.1, < 7.2)
|
269
|
+
rake
|
270
|
+
rspec
|
271
|
+
savon
|
272
|
+
sqlite3
|
273
|
+
webmock
|
274
|
+
|
275
|
+
BUNDLED WITH
|
276
|
+
2.4.13
|
data/README.md
CHANGED
data/Rakefile
CHANGED
data/gemfiles/rails_5.1.gemfile
CHANGED
@@ -0,0 +1,217 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
qbwc (1.1.0)
|
5
|
+
actionpack (>= 5.0.1)
|
6
|
+
qbxml (>= 0.3.0)
|
7
|
+
wash_out (>= 0.12.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (5.1.7)
|
13
|
+
actionpack (= 5.1.7)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (~> 0.6.1)
|
16
|
+
actionmailer (5.1.7)
|
17
|
+
actionpack (= 5.1.7)
|
18
|
+
actionview (= 5.1.7)
|
19
|
+
activejob (= 5.1.7)
|
20
|
+
mail (~> 2.5, >= 2.5.4)
|
21
|
+
rails-dom-testing (~> 2.0)
|
22
|
+
actionpack (5.1.7)
|
23
|
+
actionview (= 5.1.7)
|
24
|
+
activesupport (= 5.1.7)
|
25
|
+
rack (~> 2.0)
|
26
|
+
rack-test (>= 0.6.3)
|
27
|
+
rails-dom-testing (~> 2.0)
|
28
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
29
|
+
actionview (5.1.7)
|
30
|
+
activesupport (= 5.1.7)
|
31
|
+
builder (~> 3.1)
|
32
|
+
erubi (~> 1.4)
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
35
|
+
activejob (5.1.7)
|
36
|
+
activesupport (= 5.1.7)
|
37
|
+
globalid (>= 0.3.6)
|
38
|
+
activemodel (5.1.7)
|
39
|
+
activesupport (= 5.1.7)
|
40
|
+
activerecord (5.1.7)
|
41
|
+
activemodel (= 5.1.7)
|
42
|
+
activesupport (= 5.1.7)
|
43
|
+
arel (~> 8.0)
|
44
|
+
activesupport (5.1.7)
|
45
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
46
|
+
i18n (>= 0.7, < 2)
|
47
|
+
minitest (~> 5.1)
|
48
|
+
tzinfo (~> 1.1)
|
49
|
+
addressable (2.8.7)
|
50
|
+
public_suffix (>= 2.0.2, < 7.0)
|
51
|
+
akami (1.3.2)
|
52
|
+
gyoku (>= 0.4.0)
|
53
|
+
nokogiri
|
54
|
+
appraisal (2.5.0)
|
55
|
+
bundler
|
56
|
+
rake
|
57
|
+
thor (>= 0.14.0)
|
58
|
+
arel (8.0.0)
|
59
|
+
bigdecimal (3.1.9)
|
60
|
+
builder (3.3.0)
|
61
|
+
byebug (11.1.3)
|
62
|
+
concurrent-ruby (1.3.4)
|
63
|
+
crack (1.0.0)
|
64
|
+
bigdecimal
|
65
|
+
rexml
|
66
|
+
crass (1.0.6)
|
67
|
+
date (3.4.1)
|
68
|
+
diff-lcs (1.6.0)
|
69
|
+
erubi (1.13.1)
|
70
|
+
globalid (1.1.0)
|
71
|
+
activesupport (>= 5.0)
|
72
|
+
gyoku (1.4.0)
|
73
|
+
builder (>= 2.1.2)
|
74
|
+
rexml (~> 3.0)
|
75
|
+
hashdiff (1.1.2)
|
76
|
+
httpi (3.0.1)
|
77
|
+
rack
|
78
|
+
i18n (1.14.7)
|
79
|
+
concurrent-ruby (~> 1.0)
|
80
|
+
loofah (2.24.0)
|
81
|
+
crass (~> 1.0.2)
|
82
|
+
nokogiri (>= 1.12.0)
|
83
|
+
mail (2.8.1)
|
84
|
+
mini_mime (>= 0.1.1)
|
85
|
+
net-imap
|
86
|
+
net-pop
|
87
|
+
net-smtp
|
88
|
+
method_source (1.1.0)
|
89
|
+
mini_mime (1.1.5)
|
90
|
+
mini_portile2 (2.8.8)
|
91
|
+
minitest (5.25.5)
|
92
|
+
net-imap (0.4.19)
|
93
|
+
date
|
94
|
+
net-protocol
|
95
|
+
net-pop (0.1.2)
|
96
|
+
net-protocol
|
97
|
+
net-protocol (0.2.2)
|
98
|
+
timeout
|
99
|
+
net-smtp (0.5.1)
|
100
|
+
net-protocol
|
101
|
+
nio4r (2.7.4)
|
102
|
+
nokogiri (1.15.7)
|
103
|
+
mini_portile2 (~> 2.8.2)
|
104
|
+
racc (~> 1.4)
|
105
|
+
nokogiri (1.15.7-x86_64-linux)
|
106
|
+
racc (~> 1.4)
|
107
|
+
nori (2.6.0)
|
108
|
+
public_suffix (5.1.1)
|
109
|
+
qbxml (0.5.0)
|
110
|
+
activesupport (>= 5.0.0)
|
111
|
+
builder (~> 3.0)
|
112
|
+
nokogiri (~> 1.5)
|
113
|
+
racc (1.8.1)
|
114
|
+
rack (2.2.13)
|
115
|
+
rack-test (2.2.0)
|
116
|
+
rack (>= 1.3)
|
117
|
+
rails (5.1.7)
|
118
|
+
actioncable (= 5.1.7)
|
119
|
+
actionmailer (= 5.1.7)
|
120
|
+
actionpack (= 5.1.7)
|
121
|
+
actionview (= 5.1.7)
|
122
|
+
activejob (= 5.1.7)
|
123
|
+
activemodel (= 5.1.7)
|
124
|
+
activerecord (= 5.1.7)
|
125
|
+
activesupport (= 5.1.7)
|
126
|
+
bundler (>= 1.3.0)
|
127
|
+
railties (= 5.1.7)
|
128
|
+
sprockets-rails (>= 2.0.0)
|
129
|
+
rails-dom-testing (2.2.0)
|
130
|
+
activesupport (>= 5.0.0)
|
131
|
+
minitest
|
132
|
+
nokogiri (>= 1.6)
|
133
|
+
rails-html-sanitizer (1.6.2)
|
134
|
+
loofah (~> 2.21)
|
135
|
+
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)
|
136
|
+
railties (5.1.7)
|
137
|
+
actionpack (= 5.1.7)
|
138
|
+
activesupport (= 5.1.7)
|
139
|
+
method_source
|
140
|
+
rake (>= 0.8.7)
|
141
|
+
thor (>= 0.18.1, < 2.0)
|
142
|
+
rake (13.2.1)
|
143
|
+
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
|
+
savon (2.15.0)
|
158
|
+
akami (~> 1.2)
|
159
|
+
builder (>= 2.1.2)
|
160
|
+
gyoku (~> 1.2)
|
161
|
+
httpi (>= 2.4.5, < 5)
|
162
|
+
mail (~> 2.5)
|
163
|
+
nokogiri (>= 1.8.1)
|
164
|
+
nori (~> 2.4)
|
165
|
+
wasabi (>= 3.7, < 6)
|
166
|
+
sprockets (4.2.1)
|
167
|
+
concurrent-ruby (~> 1.0)
|
168
|
+
rack (>= 2.2.4, < 4)
|
169
|
+
sprockets-rails (3.2.2)
|
170
|
+
actionpack (>= 4.0)
|
171
|
+
activesupport (>= 4.0)
|
172
|
+
sprockets (>= 3.0.0)
|
173
|
+
sqlite3 (1.6.9)
|
174
|
+
mini_portile2 (~> 2.8.0)
|
175
|
+
sqlite3 (1.6.9-x86_64-linux)
|
176
|
+
thor (1.3.2)
|
177
|
+
thread_safe (0.3.6)
|
178
|
+
timeout (0.4.3)
|
179
|
+
tzinfo (1.2.11)
|
180
|
+
thread_safe (~> 0.1)
|
181
|
+
wasabi (4.0.0)
|
182
|
+
addressable
|
183
|
+
httpi (~> 3.0)
|
184
|
+
nokogiri (>= 1.13.9)
|
185
|
+
wash_out (0.12.0)
|
186
|
+
nori (>= 2.0.0)
|
187
|
+
webmock (3.25.1)
|
188
|
+
addressable (>= 2.8.0)
|
189
|
+
crack (>= 0.3.2)
|
190
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
191
|
+
websocket-driver (0.6.5)
|
192
|
+
websocket-extensions (>= 0.1.0)
|
193
|
+
websocket-extensions (0.1.5)
|
194
|
+
|
195
|
+
PLATFORMS
|
196
|
+
ruby
|
197
|
+
x86_64-linux
|
198
|
+
|
199
|
+
DEPENDENCIES
|
200
|
+
actionpack (~> 5.1.1)
|
201
|
+
actionview (~> 5.1.1)
|
202
|
+
activerecord
|
203
|
+
appraisal
|
204
|
+
byebug
|
205
|
+
concurrent-ruby (= 1.3.4)
|
206
|
+
httpi
|
207
|
+
minitest
|
208
|
+
qbwc!
|
209
|
+
rails (>= 5.0.1, < 7.2)
|
210
|
+
rake
|
211
|
+
rspec
|
212
|
+
savon
|
213
|
+
sqlite3
|
214
|
+
webmock
|
215
|
+
|
216
|
+
BUNDLED WITH
|
217
|
+
2.4.13
|