qbwc 1.0.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 -1
- data/Appraisals +36 -0
- data/CHANGELOG.md +27 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +276 -0
- data/README.md +4 -6
- data/Rakefile +2 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5.1.gemfile +9 -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_7.1.gemfile +8 -0
- data/gemfiles/rails_7.1.gemfile.lock +292 -0
- data/lib/generators/qbwc/install/templates/db/migrate/change_request_index.rb +1 -1
- data/lib/generators/qbwc/install/templates/db/migrate/create_qbwc_jobs.rb +1 -1
- data/lib/generators/qbwc/install/templates/db/migrate/create_qbwc_sessions.rb +2 -2
- data/lib/generators/qbwc/install/templates/db/migrate/index_qbwc_jobs.rb +1 -1
- data/lib/generators/qbwc/install/templates/db/migrate/session_pending_jobs_text.rb +1 -1
- data/lib/qbwc/active_record/job.rb +10 -3
- data/lib/qbwc/controller.rb +7 -7
- data/lib/qbwc/job.rb +1 -1
- data/lib/qbwc/session.rb +3 -2
- data/lib/qbwc/version.rb +1 -1
- data/qbwc.gemspec +9 -6
- data/test/qbwc/controllers/controller_test.rb +15 -9
- data/test/qbwc/integration/job_management_test.rb +2 -2
- data/test/qbwc/integration/request_generation_test.rb +12 -12
- data/test/qbwc/integration/response_test.rb +2 -0
- data/test/qbwc/integration/routes_test.rb +6 -6
- data/test/qbwc/integration/savon_client_test.rb +48 -0
- data/test/qbwc/integration/session_test.rb +1 -5
- data/test/test_helper.rb +63 -6
- metadata +61 -28
- data/.travis.yml +0 -8
- data/Guardfile +0 -46
- data/test/wash_out_helper.rb +0 -76
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
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
appraise "rails-5.1" do
|
2
|
+
gem "actionpack", "~> 5.1.1"
|
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"
|
36
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,33 @@
|
|
1
1
|
|
2
2
|
# Change Log
|
3
3
|
|
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)
|
18
|
+
[Full Changelog](https://github.com/qbwc/qbwc/compare/1.0.0...1.1.0)
|
19
|
+
|
20
|
+
**Fixed bugs:**
|
21
|
+
|
22
|
+
- Support Rails 5. [\#100](https://github.com/qbwc/qbwc/pull/100) ([rchekaluk](https://github.com/rchekaluk)) [\#117](https://github.com/qbwc/qbwc/pull/117) ([lostapathy](https://github.com/lostapathy))
|
23
|
+
- Clarify documentation regarding top-level tag in response hash. [\#91](https://github.com/qbwc/qbwc/pull/91) ([steintr](https://github.com/steintr))
|
24
|
+
- Fix Rails 5 deprecations. [\#97](https://github.com/qbwc/qbwc/pull/97) ([nicholejeannine](https://github.com/nicholejeannine))
|
25
|
+
|
26
|
+
**New features:**
|
27
|
+
|
28
|
+
- Log qbxml_response closer to the top of \#process_response. [\#90](https://github.com/qbwc/qbwc/pull/90) ([steintr](https://github.com/steintr))
|
29
|
+
|
30
|
+
|
4
31
|
## [1.0.0](https://github.com/qbwc/qbwc/releases/tag/v1.0.0) (2016-03-02)
|
5
32
|
[Full Changelog](https://github.com/qbwc/qbwc/compare/0.1.0...1.0.0)
|
6
33
|
|
data/Gemfile
CHANGED
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
@@ -1,6 +1,4 @@
|
|
1
|
-
QBWC lets your Rails
|
2
|
-
|
3
|
-
[](https://travis-ci.org/qbwc/qbwc)
|
1
|
+
QBWC lets your Rails application talk to QuickBooks Desktop.
|
4
2
|
|
5
3
|
## Installation
|
6
4
|
|
@@ -72,12 +70,12 @@ To create a job (e.g. from `rails console` or wherever):
|
|
72
70
|
|
73
71
|
```ruby
|
74
72
|
require 'qbwc'
|
75
|
-
QBWC.add_job(:list_customers, true, '', CustomerTestWorker)
|
73
|
+
QBWC.add_job(:list_customers, true, 'C:\\QuickBooks\\Oceanic.QBW', CustomerTestWorker)
|
76
74
|
```
|
77
75
|
|
78
76
|
* The first argument is a unique name for the job. You can use this later to disable or delete the job.
|
79
77
|
* The second argument indicates whether the job is initially enabled.
|
80
|
-
* The third argument specifies the path to the QuickBooks company file this job affects.
|
78
|
+
* The third argument specifies the path to the QuickBooks company file this job affects.
|
81
79
|
* The fourth argument is your worker class. See the next section for a description of workers.
|
82
80
|
|
83
81
|
Your job will be persisted in your database and will remain active and run every time QuickBooks Web Connector runs an update. If you don't want this to happen, you can have have your job disable or delete itself after completion. For example:
|
@@ -133,7 +131,7 @@ end
|
|
133
131
|
```
|
134
132
|
|
135
133
|
|
136
|
-
Use the [Onscreen Reference for Intuit Software Development Kits](https://developer-static.intuit.com/qbSDK-current/Common/newOSR/index.html) (use Format: qbXML) to see request and response formats to use in your jobs. Use underscored, lowercased versions of all tags (e.g. `customer_query_rq`, not `CustomerQueryRq`).
|
134
|
+
Use the [Onscreen Reference for Intuit Software Development Kits](https://developer-static.intuit.com/qbSDK-current/Common/newOSR/index.html) (use Format: qbXML) to see request and response formats to use in your jobs. Use underscored, lowercased versions of all tags (e.g. `customer_query_rq`, not `CustomerQueryRq`). Note that while requests include the top-level tag (e.g. `customer_query_rq`), the response hash passed to `QBWC::Worker#handle_response` does not include a corresponding top-level tag such as `customer_query_rs` (despite it being in the actual QBXML and shown in the OSR).
|
137
135
|
|
138
136
|
### Defining requests outside of a worker ###
|
139
137
|
|
data/Rakefile
CHANGED