mrglass-qbxml 1.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 +7 -0
- data/.gitignore +21 -0
- data/.travis.yml +26 -0
- data/Appraisals +23 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +86 -0
- data/Rakefile +7 -0
- data/gemfiles/rails_5.0.gemfile +7 -0
- data/gemfiles/rails_5.0.gemfile.lock +69 -0
- data/gemfiles/rails_5.1.gemfile +7 -0
- data/gemfiles/rails_5.1.gemfile.lock +69 -0
- data/gemfiles/rails_5.2.gemfile +7 -0
- data/gemfiles/rails_5.2.gemfile.lock +69 -0
- data/gemfiles/rails_6.0.gemfile +7 -0
- data/gemfiles/rails_6.0.gemfile.lock +71 -0
- data/gemfiles/rails_6.1.gemfile +7 -0
- data/gemfiles/rails_6.1.gemfile.lock +70 -0
- data/lib/qbxml/hash.rb +188 -0
- data/lib/qbxml/qbxml.rb +124 -0
- data/lib/qbxml/types.rb +45 -0
- data/lib/qbxml/version.rb +3 -0
- data/lib/qbxml.rb +11 -0
- data/qbxml.gemspec +29 -0
- data/schema/qbposxmlops30.xml +8343 -0
- data/schema/qbxmlops100.xml +30100 -0
- data/schema/qbxmlops110.xml +32241 -0
- data/schema/qbxmlops120.xml +34129 -0
- data/schema/qbxmlops130.xml +35788 -0
- data/schema/qbxmlops140.xml +35792 -0
- data/schema/qbxmlops20.xml +13140 -0
- data/schema/qbxmlops30.xml +18229 -0
- data/schema/qbxmlops40.xml +19811 -0
- data/schema/qbxmlops41.xml +19979 -0
- data/schema/qbxmlops50.xml +29931 -0
- data/schema/qbxmlops60.xml +24555 -0
- data/schema/qbxmlops70.xml +29844 -0
- data/schema/qbxmlops80.xml +28447 -0
- data/schema/qbxmlopsCA30.xml +18409 -0
- data/spec/backwards_compatibility.rb +26 -0
- data/spec/spec_helper.rb +25 -0
- data/spec/support/requests/account_query_rq.xml +8 -0
- data/spec/support/requests/customer_add_rq.xml +28 -0
- data/spec/support/requests/customer_query_iterator_rq.xml +11 -0
- data/spec/support/requests/customer_query_rq.xml +9 -0
- data/spec/support/requests/estimate_add_rq.xml +45 -0
- data/spec/support/requests/invoice_add_rq.xml +40 -0
- data/spec/support/requests/item_inventory_add_rq.xml +22 -0
- data/spec/support/requests/purchase_order_query_rq.xml +14 -0
- data/spec/support/requests/receive_payment_add_rq.xml +35 -0
- data/spec/support/requests/receive_payment_query_rq.xml +9 -0
- data/spec/support/requests/sales_receipt_add_rq.xml +49 -0
- data/spec/support/responses/account_query_rs.xml +42 -0
- data/spec/support/responses/customer_add_rs.xml +37 -0
- data/spec/support/responses/customer_query_rs.xml +49 -0
- data/spec/support/responses/customer_query_terator_rs.xml +34 -0
- data/spec/support/responses/item_inventory_add_rs.xml +40 -0
- data/spec/support/responses/purchase_order_query_rs.xml +84 -0
- data/spec/support/responses/receive_payment_query_rs.xml +51 -0
- data/spec/support/responses/sales_receipt_add_rs.xml +89 -0
- data/test/unit/hash_to_xml_test.rb +78 -0
- data/test/unit/version_test.rb +24 -0
- data/test/unit/xml_to_hash_test.rb +281 -0
- metadata +242 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 154734df54c80a8df04b2d339a600af55df466d75b4b6788dbdf301fa3c56cd0
|
|
4
|
+
data.tar.gz: 587b7a3ea162e397835f5f61e4efbf868a1c426577902665c2b602276df55b22
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: aa3298531f044e28e569618e655b126cdc6c0d8bbb9469398cd34a93948c32b21282515deb0306409636318abaae9e9c0da56f3427651f07ce23396764687893
|
|
7
|
+
data.tar.gz: 16631b2b914df6523f50dddcf3e16ecaaa0540e23355d5091323965f147b63dd63dcf6cf4a7d9e06aa9e1c4256aee01b93ca017df3ab941fc88611aea34bf191
|
data/.gitignore
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
*.gem
|
|
2
|
+
*.rbc
|
|
3
|
+
.bundle
|
|
4
|
+
.config
|
|
5
|
+
.yardoc
|
|
6
|
+
Gemfile.lock
|
|
7
|
+
InstalledFiles
|
|
8
|
+
_yardoc
|
|
9
|
+
coverage
|
|
10
|
+
doc/
|
|
11
|
+
lib/bundler/man
|
|
12
|
+
pkg
|
|
13
|
+
rdoc
|
|
14
|
+
spec/reports
|
|
15
|
+
test/tmp
|
|
16
|
+
test/version_tmp
|
|
17
|
+
tmp
|
|
18
|
+
.ruby-version
|
|
19
|
+
.ruby-gemset
|
|
20
|
+
.idea
|
|
21
|
+
gemfiles/vendor
|
data/.travis.yml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
language: ruby
|
|
2
|
+
|
|
3
|
+
rvm:
|
|
4
|
+
- 2.4.10
|
|
5
|
+
- 2.5.8
|
|
6
|
+
- 2.6.6
|
|
7
|
+
- 2.7.2
|
|
8
|
+
|
|
9
|
+
gemfile:
|
|
10
|
+
- gemfiles/rails_6.1.gemfile
|
|
11
|
+
- gemfiles/rails_6.0.gemfile
|
|
12
|
+
- gemfiles/rails_5.2.gemfile
|
|
13
|
+
- gemfiles/rails_5.1.gemfile
|
|
14
|
+
- gemfiles/rails_5.0.gemfile
|
|
15
|
+
- gemfiles/rails_7.0.gemfile
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
exclude:
|
|
19
|
+
- rvm: 2.4.10
|
|
20
|
+
gemfile: gemfiles/rails_6.1.gemfile
|
|
21
|
+
- rvm: 2.4.10
|
|
22
|
+
gemfile: gemfiles/rails_6.0.gemfile
|
|
23
|
+
|
|
24
|
+
before_install:
|
|
25
|
+
- yes | gem update --system --force
|
|
26
|
+
- gem install bundler -v 2.1.4
|
data/Appraisals
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
appraise "rails-5.0" do
|
|
2
|
+
gem "activesupport", "~> 5.0.0"
|
|
3
|
+
end
|
|
4
|
+
|
|
5
|
+
appraise "rails-5.1" do
|
|
6
|
+
gem "activesupport", "~> 5.1.0"
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
appraise "rails-5.2" do
|
|
10
|
+
gem "activesupport", "~> 5.2.0"
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
appraise "rails-6.0" do
|
|
14
|
+
gem "activesupport", "~> 6.0.0"
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
appraise "rails-6.1" do
|
|
18
|
+
gem "activesupport", "~> 6.1.0"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
appraise "rails-7.0" do
|
|
22
|
+
gem "activesupport", "~> 7.0.5"
|
|
23
|
+
end
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2012 Alex Skryl
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Qbxml
|
|
2
|
+
|
|
3
|
+
[](https://travis-ci.org/qbwc/qbxml)
|
|
4
|
+
|
|
5
|
+
Qbxml is a QBXML parser and validation tool.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
gem 'qbxml'
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install qbxml
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
### Initialization
|
|
24
|
+
|
|
25
|
+
The QBXML supported depends on whether you use QuickBooks (`:qb`) or
|
|
26
|
+
QuickBooks Point of Sale (`:qbpos`) and on the version of QuickBooks used.
|
|
27
|
+
|
|
28
|
+
```ruby
|
|
29
|
+
q = Qbxml.new(:qb, '7.0')
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### API Introspection
|
|
33
|
+
|
|
34
|
+
Return all types defined in the schema
|
|
35
|
+
|
|
36
|
+
```ruby
|
|
37
|
+
q.types
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Return all types matching a certain pattern
|
|
41
|
+
|
|
42
|
+
```ruby
|
|
43
|
+
q.types('Customer')
|
|
44
|
+
|
|
45
|
+
q.types(/Customer/)
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Print the xml template for a specific type
|
|
49
|
+
|
|
50
|
+
```ruby
|
|
51
|
+
puts q.describe('CustomerModRq')
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### QBXML To Ruby
|
|
55
|
+
|
|
56
|
+
Convert valid QBXML to a ruby hash
|
|
57
|
+
|
|
58
|
+
```ruby
|
|
59
|
+
q.from_qbxml(xml)
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Ruby To QBXML
|
|
63
|
+
|
|
64
|
+
Convert a ruby hash to QBXML, skipping validation
|
|
65
|
+
|
|
66
|
+
```ruby
|
|
67
|
+
q.to_qbxml(hsh)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Convert a ruby hash to QBXML and validate all types
|
|
71
|
+
|
|
72
|
+
```ruby
|
|
73
|
+
q.to_qbxml(hsh, validate: true)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Caveats
|
|
77
|
+
|
|
78
|
+
QuickBooks only supports [ISO-8859-1](http://en.wikipedia.org/wiki/ISO/IEC_8859-1) characters. Any characters outside of ISO-8859-1 will become question marks in QuickBooks.
|
|
79
|
+
|
|
80
|
+
## Contributing
|
|
81
|
+
|
|
82
|
+
1. Fork it
|
|
83
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
84
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
85
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
86
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.4.0)
|
|
5
|
+
activesupport (>= 5.0.0)
|
|
6
|
+
builder (~> 3.0)
|
|
7
|
+
nokogiri (~> 1.5)
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
activesupport (5.0.7.2)
|
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
|
+
i18n (>= 0.7, < 2)
|
|
15
|
+
minitest (~> 5.1)
|
|
16
|
+
tzinfo (~> 1.1)
|
|
17
|
+
appraisal (2.3.0)
|
|
18
|
+
bundler
|
|
19
|
+
rake
|
|
20
|
+
thor (>= 0.14.0)
|
|
21
|
+
builder (3.2.4)
|
|
22
|
+
coderay (1.1.3)
|
|
23
|
+
concurrent-ruby (1.1.7)
|
|
24
|
+
diff-lcs (1.4.4)
|
|
25
|
+
i18n (1.8.5)
|
|
26
|
+
concurrent-ruby (~> 1.0)
|
|
27
|
+
method_source (0.9.2)
|
|
28
|
+
mini_portile2 (2.4.0)
|
|
29
|
+
minitest (5.14.2)
|
|
30
|
+
nokogiri (1.10.10)
|
|
31
|
+
mini_portile2 (~> 2.4.0)
|
|
32
|
+
pry (0.12.2)
|
|
33
|
+
coderay (~> 1.1.0)
|
|
34
|
+
method_source (~> 0.9.0)
|
|
35
|
+
pry-nav (0.3.0)
|
|
36
|
+
pry (>= 0.9.10, < 0.13.0)
|
|
37
|
+
rake (13.0.1)
|
|
38
|
+
rspec (3.10.0)
|
|
39
|
+
rspec-core (~> 3.10.0)
|
|
40
|
+
rspec-expectations (~> 3.10.0)
|
|
41
|
+
rspec-mocks (~> 3.10.0)
|
|
42
|
+
rspec-core (3.10.0)
|
|
43
|
+
rspec-support (~> 3.10.0)
|
|
44
|
+
rspec-expectations (3.10.0)
|
|
45
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
46
|
+
rspec-support (~> 3.10.0)
|
|
47
|
+
rspec-mocks (3.10.0)
|
|
48
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
49
|
+
rspec-support (~> 3.10.0)
|
|
50
|
+
rspec-support (3.10.0)
|
|
51
|
+
thor (1.0.1)
|
|
52
|
+
thread_safe (0.3.6)
|
|
53
|
+
tzinfo (1.2.8)
|
|
54
|
+
thread_safe (~> 0.1)
|
|
55
|
+
|
|
56
|
+
PLATFORMS
|
|
57
|
+
ruby
|
|
58
|
+
|
|
59
|
+
DEPENDENCIES
|
|
60
|
+
activesupport (~> 5.0.0)
|
|
61
|
+
appraisal
|
|
62
|
+
pry
|
|
63
|
+
pry-nav
|
|
64
|
+
qbxml!
|
|
65
|
+
rake
|
|
66
|
+
rspec
|
|
67
|
+
|
|
68
|
+
BUNDLED WITH
|
|
69
|
+
2.1.4
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.4.0)
|
|
5
|
+
activesupport (>= 5.0.0)
|
|
6
|
+
builder (~> 3.0)
|
|
7
|
+
nokogiri (~> 1.5)
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
activesupport (5.1.7)
|
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
|
+
i18n (>= 0.7, < 2)
|
|
15
|
+
minitest (~> 5.1)
|
|
16
|
+
tzinfo (~> 1.1)
|
|
17
|
+
appraisal (2.3.0)
|
|
18
|
+
bundler
|
|
19
|
+
rake
|
|
20
|
+
thor (>= 0.14.0)
|
|
21
|
+
builder (3.2.4)
|
|
22
|
+
coderay (1.1.3)
|
|
23
|
+
concurrent-ruby (1.1.7)
|
|
24
|
+
diff-lcs (1.4.4)
|
|
25
|
+
i18n (1.8.5)
|
|
26
|
+
concurrent-ruby (~> 1.0)
|
|
27
|
+
method_source (0.9.2)
|
|
28
|
+
mini_portile2 (2.4.0)
|
|
29
|
+
minitest (5.14.2)
|
|
30
|
+
nokogiri (1.10.10)
|
|
31
|
+
mini_portile2 (~> 2.4.0)
|
|
32
|
+
pry (0.12.2)
|
|
33
|
+
coderay (~> 1.1.0)
|
|
34
|
+
method_source (~> 0.9.0)
|
|
35
|
+
pry-nav (0.3.0)
|
|
36
|
+
pry (>= 0.9.10, < 0.13.0)
|
|
37
|
+
rake (13.0.1)
|
|
38
|
+
rspec (3.10.0)
|
|
39
|
+
rspec-core (~> 3.10.0)
|
|
40
|
+
rspec-expectations (~> 3.10.0)
|
|
41
|
+
rspec-mocks (~> 3.10.0)
|
|
42
|
+
rspec-core (3.10.0)
|
|
43
|
+
rspec-support (~> 3.10.0)
|
|
44
|
+
rspec-expectations (3.10.0)
|
|
45
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
46
|
+
rspec-support (~> 3.10.0)
|
|
47
|
+
rspec-mocks (3.10.0)
|
|
48
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
49
|
+
rspec-support (~> 3.10.0)
|
|
50
|
+
rspec-support (3.10.0)
|
|
51
|
+
thor (1.0.1)
|
|
52
|
+
thread_safe (0.3.6)
|
|
53
|
+
tzinfo (1.2.8)
|
|
54
|
+
thread_safe (~> 0.1)
|
|
55
|
+
|
|
56
|
+
PLATFORMS
|
|
57
|
+
ruby
|
|
58
|
+
|
|
59
|
+
DEPENDENCIES
|
|
60
|
+
activesupport (~> 5.1.0)
|
|
61
|
+
appraisal
|
|
62
|
+
pry
|
|
63
|
+
pry-nav
|
|
64
|
+
qbxml!
|
|
65
|
+
rake
|
|
66
|
+
rspec
|
|
67
|
+
|
|
68
|
+
BUNDLED WITH
|
|
69
|
+
2.1.4
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.4.0)
|
|
5
|
+
activesupport (>= 5.0.0)
|
|
6
|
+
builder (~> 3.0)
|
|
7
|
+
nokogiri (~> 1.5)
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
activesupport (5.2.4.4)
|
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
|
+
i18n (>= 0.7, < 2)
|
|
15
|
+
minitest (~> 5.1)
|
|
16
|
+
tzinfo (~> 1.1)
|
|
17
|
+
appraisal (2.3.0)
|
|
18
|
+
bundler
|
|
19
|
+
rake
|
|
20
|
+
thor (>= 0.14.0)
|
|
21
|
+
builder (3.2.4)
|
|
22
|
+
coderay (1.1.3)
|
|
23
|
+
concurrent-ruby (1.1.7)
|
|
24
|
+
diff-lcs (1.4.4)
|
|
25
|
+
i18n (1.8.5)
|
|
26
|
+
concurrent-ruby (~> 1.0)
|
|
27
|
+
method_source (0.9.2)
|
|
28
|
+
mini_portile2 (2.4.0)
|
|
29
|
+
minitest (5.14.2)
|
|
30
|
+
nokogiri (1.10.10)
|
|
31
|
+
mini_portile2 (~> 2.4.0)
|
|
32
|
+
pry (0.12.2)
|
|
33
|
+
coderay (~> 1.1.0)
|
|
34
|
+
method_source (~> 0.9.0)
|
|
35
|
+
pry-nav (0.3.0)
|
|
36
|
+
pry (>= 0.9.10, < 0.13.0)
|
|
37
|
+
rake (13.0.1)
|
|
38
|
+
rspec (3.10.0)
|
|
39
|
+
rspec-core (~> 3.10.0)
|
|
40
|
+
rspec-expectations (~> 3.10.0)
|
|
41
|
+
rspec-mocks (~> 3.10.0)
|
|
42
|
+
rspec-core (3.10.0)
|
|
43
|
+
rspec-support (~> 3.10.0)
|
|
44
|
+
rspec-expectations (3.10.0)
|
|
45
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
46
|
+
rspec-support (~> 3.10.0)
|
|
47
|
+
rspec-mocks (3.10.0)
|
|
48
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
49
|
+
rspec-support (~> 3.10.0)
|
|
50
|
+
rspec-support (3.10.0)
|
|
51
|
+
thor (1.0.1)
|
|
52
|
+
thread_safe (0.3.6)
|
|
53
|
+
tzinfo (1.2.8)
|
|
54
|
+
thread_safe (~> 0.1)
|
|
55
|
+
|
|
56
|
+
PLATFORMS
|
|
57
|
+
ruby
|
|
58
|
+
|
|
59
|
+
DEPENDENCIES
|
|
60
|
+
activesupport (~> 5.2.0)
|
|
61
|
+
appraisal
|
|
62
|
+
pry
|
|
63
|
+
pry-nav
|
|
64
|
+
qbxml!
|
|
65
|
+
rake
|
|
66
|
+
rspec
|
|
67
|
+
|
|
68
|
+
BUNDLED WITH
|
|
69
|
+
2.1.4
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.4.0)
|
|
5
|
+
activesupport (>= 5.0.0)
|
|
6
|
+
builder (~> 3.0)
|
|
7
|
+
nokogiri (~> 1.5)
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
activesupport (6.0.3.4)
|
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
|
+
i18n (>= 0.7, < 2)
|
|
15
|
+
minitest (~> 5.1)
|
|
16
|
+
tzinfo (~> 1.1)
|
|
17
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
|
18
|
+
appraisal (2.3.0)
|
|
19
|
+
bundler
|
|
20
|
+
rake
|
|
21
|
+
thor (>= 0.14.0)
|
|
22
|
+
builder (3.2.4)
|
|
23
|
+
coderay (1.1.3)
|
|
24
|
+
concurrent-ruby (1.1.7)
|
|
25
|
+
diff-lcs (1.4.4)
|
|
26
|
+
i18n (1.8.5)
|
|
27
|
+
concurrent-ruby (~> 1.0)
|
|
28
|
+
method_source (0.9.2)
|
|
29
|
+
mini_portile2 (2.4.0)
|
|
30
|
+
minitest (5.14.2)
|
|
31
|
+
nokogiri (1.10.10)
|
|
32
|
+
mini_portile2 (~> 2.4.0)
|
|
33
|
+
pry (0.12.2)
|
|
34
|
+
coderay (~> 1.1.0)
|
|
35
|
+
method_source (~> 0.9.0)
|
|
36
|
+
pry-nav (0.3.0)
|
|
37
|
+
pry (>= 0.9.10, < 0.13.0)
|
|
38
|
+
rake (13.0.1)
|
|
39
|
+
rspec (3.10.0)
|
|
40
|
+
rspec-core (~> 3.10.0)
|
|
41
|
+
rspec-expectations (~> 3.10.0)
|
|
42
|
+
rspec-mocks (~> 3.10.0)
|
|
43
|
+
rspec-core (3.10.0)
|
|
44
|
+
rspec-support (~> 3.10.0)
|
|
45
|
+
rspec-expectations (3.10.0)
|
|
46
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
47
|
+
rspec-support (~> 3.10.0)
|
|
48
|
+
rspec-mocks (3.10.0)
|
|
49
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
50
|
+
rspec-support (~> 3.10.0)
|
|
51
|
+
rspec-support (3.10.0)
|
|
52
|
+
thor (1.0.1)
|
|
53
|
+
thread_safe (0.3.6)
|
|
54
|
+
tzinfo (1.2.8)
|
|
55
|
+
thread_safe (~> 0.1)
|
|
56
|
+
zeitwerk (2.4.2)
|
|
57
|
+
|
|
58
|
+
PLATFORMS
|
|
59
|
+
ruby
|
|
60
|
+
|
|
61
|
+
DEPENDENCIES
|
|
62
|
+
activesupport (~> 6.0.0)
|
|
63
|
+
appraisal
|
|
64
|
+
pry
|
|
65
|
+
pry-nav
|
|
66
|
+
qbxml!
|
|
67
|
+
rake
|
|
68
|
+
rspec
|
|
69
|
+
|
|
70
|
+
BUNDLED WITH
|
|
71
|
+
2.1.4
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.4.0)
|
|
5
|
+
activesupport (>= 5.0.0)
|
|
6
|
+
builder (~> 3.0)
|
|
7
|
+
nokogiri (~> 1.5)
|
|
8
|
+
|
|
9
|
+
GEM
|
|
10
|
+
remote: https://rubygems.org/
|
|
11
|
+
specs:
|
|
12
|
+
activesupport (6.1.0)
|
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
|
+
i18n (>= 1.6, < 2)
|
|
15
|
+
minitest (>= 5.1)
|
|
16
|
+
tzinfo (~> 2.0)
|
|
17
|
+
zeitwerk (~> 2.3)
|
|
18
|
+
appraisal (2.3.0)
|
|
19
|
+
bundler
|
|
20
|
+
rake
|
|
21
|
+
thor (>= 0.14.0)
|
|
22
|
+
builder (3.2.4)
|
|
23
|
+
coderay (1.1.3)
|
|
24
|
+
concurrent-ruby (1.1.7)
|
|
25
|
+
diff-lcs (1.4.4)
|
|
26
|
+
i18n (1.8.5)
|
|
27
|
+
concurrent-ruby (~> 1.0)
|
|
28
|
+
method_source (0.9.2)
|
|
29
|
+
mini_portile2 (2.4.0)
|
|
30
|
+
minitest (5.14.2)
|
|
31
|
+
nokogiri (1.10.10)
|
|
32
|
+
mini_portile2 (~> 2.4.0)
|
|
33
|
+
pry (0.12.2)
|
|
34
|
+
coderay (~> 1.1.0)
|
|
35
|
+
method_source (~> 0.9.0)
|
|
36
|
+
pry-nav (0.3.0)
|
|
37
|
+
pry (>= 0.9.10, < 0.13.0)
|
|
38
|
+
rake (13.0.1)
|
|
39
|
+
rspec (3.10.0)
|
|
40
|
+
rspec-core (~> 3.10.0)
|
|
41
|
+
rspec-expectations (~> 3.10.0)
|
|
42
|
+
rspec-mocks (~> 3.10.0)
|
|
43
|
+
rspec-core (3.10.0)
|
|
44
|
+
rspec-support (~> 3.10.0)
|
|
45
|
+
rspec-expectations (3.10.0)
|
|
46
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
47
|
+
rspec-support (~> 3.10.0)
|
|
48
|
+
rspec-mocks (3.10.0)
|
|
49
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
50
|
+
rspec-support (~> 3.10.0)
|
|
51
|
+
rspec-support (3.10.0)
|
|
52
|
+
thor (1.0.1)
|
|
53
|
+
tzinfo (2.0.3)
|
|
54
|
+
concurrent-ruby (~> 1.0)
|
|
55
|
+
zeitwerk (2.4.2)
|
|
56
|
+
|
|
57
|
+
PLATFORMS
|
|
58
|
+
ruby
|
|
59
|
+
|
|
60
|
+
DEPENDENCIES
|
|
61
|
+
activesupport (~> 6.1.0)
|
|
62
|
+
appraisal
|
|
63
|
+
pry
|
|
64
|
+
pry-nav
|
|
65
|
+
qbxml!
|
|
66
|
+
rake
|
|
67
|
+
rspec
|
|
68
|
+
|
|
69
|
+
BUNDLED WITH
|
|
70
|
+
2.1.4
|