qbxml 0.5.0 → 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 +4 -4
- data/.github/workflows/ci.yml +30 -0
- data/Appraisals +8 -12
- data/gemfiles/{rails_5.0.gemfile → rails_7.1.gemfile} +1 -1
- data/gemfiles/rails_7.1.gemfile.lock +94 -0
- data/gemfiles/{rails_5.2.gemfile → rails_7.2.gemfile} +1 -1
- data/gemfiles/rails_7.2.gemfile.lock +71 -0
- data/gemfiles/{rails_5.1.gemfile → rails_8.0.gemfile} +1 -1
- data/gemfiles/rails_8.0.gemfile.lock +94 -0
- data/gemfiles/{rails_6.0.gemfile → rails_8.1.gemfile} +1 -1
- data/gemfiles/rails_8.1.gemfile.lock +94 -0
- data/lib/qbxml/hash.rb +1 -0
- data/lib/qbxml/types.rb +2 -0
- data/lib/qbxml/version.rb +1 -1
- data/lib/qbxml.rb +2 -0
- data/qbxml.gemspec +4 -1
- metadata +29 -19
- data/gemfiles/rails_5.0.gemfile.lock +0 -69
- data/gemfiles/rails_5.1.gemfile.lock +0 -69
- data/gemfiles/rails_5.2.gemfile.lock +0 -69
- data/gemfiles/rails_6.0.gemfile.lock +0 -71
- data/gemfiles/rails_6.1.gemfile +0 -7
- data/gemfiles/rails_6.1.gemfile.lock +0 -70
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9e0a517bcde4656f6c9af1ccb78d17292ff86df232121d05597a539f085550d
|
|
4
|
+
data.tar.gz: 40ff0bfaaf09977c59541f6737ad52aa6f574dd8a0ce1ae31e5158c3b7683e7e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24d3a21ad32f93546bdab5ab1b7222f0f6bd789b4b170b878f22ce2b0f26f3bab89fd4299c3f28d112ae4192d85cc016b5f744d258eab84c4678daee178ed8b1
|
|
7
|
+
data.tar.gz: d47c505a64bf48970186de06d3e24f579844c325309d7d2373f55a9505c16121a85482be0b8c535d00419fda6229bd1e47f53bfd39d62717d6e87e3b48fe8607
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
- 3.2
|
|
14
|
+
- 3.3
|
|
15
|
+
- 3.4
|
|
16
|
+
- '4.0'
|
|
17
|
+
rails-version:
|
|
18
|
+
- 7.1
|
|
19
|
+
- 7.2
|
|
20
|
+
- '8.0'
|
|
21
|
+
- 8.1
|
|
22
|
+
env:
|
|
23
|
+
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
|
|
24
|
+
steps:
|
|
25
|
+
- uses: actions/checkout@v3
|
|
26
|
+
- uses: ruby/setup-ruby@v1
|
|
27
|
+
with:
|
|
28
|
+
ruby-version: "${{ matrix.ruby-version }}"
|
|
29
|
+
bundler-cache: true
|
|
30
|
+
- run: bundle exec rake
|
data/Appraisals
CHANGED
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
appraise "rails-
|
|
2
|
-
gem "activesupport", "~>
|
|
1
|
+
appraise "rails-7.1" do
|
|
2
|
+
gem "activesupport", "~> 7.1.0"
|
|
3
3
|
end
|
|
4
4
|
|
|
5
|
-
appraise "rails-
|
|
6
|
-
gem "activesupport", "~>
|
|
5
|
+
appraise "rails-7.2" do
|
|
6
|
+
gem "activesupport", "~> 7.2.0"
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
appraise "rails-
|
|
10
|
-
gem "activesupport", "~>
|
|
9
|
+
appraise "rails-8.0" do
|
|
10
|
+
gem "activesupport", "~> 8.0.0"
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
appraise "rails-
|
|
14
|
-
gem "activesupport", "~>
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
appraise "rails-6.1" do
|
|
18
|
-
gem "activesupport", "~> 6.1.0"
|
|
13
|
+
appraise "rails-8.1" do
|
|
14
|
+
gem "activesupport", "~> 8.1.0"
|
|
19
15
|
end
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.5.0)
|
|
5
|
+
activesupport (>= 7.1.0)
|
|
6
|
+
bigdecimal
|
|
7
|
+
builder (~> 3.0)
|
|
8
|
+
nokogiri (~> 1.5)
|
|
9
|
+
|
|
10
|
+
GEM
|
|
11
|
+
remote: https://rubygems.org/
|
|
12
|
+
specs:
|
|
13
|
+
activesupport (7.1.6)
|
|
14
|
+
base64
|
|
15
|
+
benchmark (>= 0.3)
|
|
16
|
+
bigdecimal
|
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
18
|
+
connection_pool (>= 2.2.5)
|
|
19
|
+
drb
|
|
20
|
+
i18n (>= 1.6, < 2)
|
|
21
|
+
logger (>= 1.4.2)
|
|
22
|
+
minitest (>= 5.1)
|
|
23
|
+
mutex_m
|
|
24
|
+
securerandom (>= 0.3)
|
|
25
|
+
tzinfo (~> 2.0)
|
|
26
|
+
appraisal (2.5.0)
|
|
27
|
+
bundler
|
|
28
|
+
rake
|
|
29
|
+
thor (>= 0.14.0)
|
|
30
|
+
base64 (0.3.0)
|
|
31
|
+
benchmark (0.5.0)
|
|
32
|
+
bigdecimal (4.0.1)
|
|
33
|
+
builder (3.3.0)
|
|
34
|
+
coderay (1.1.3)
|
|
35
|
+
concurrent-ruby (1.3.6)
|
|
36
|
+
connection_pool (3.0.2)
|
|
37
|
+
drb (2.2.3)
|
|
38
|
+
i18n (1.14.8)
|
|
39
|
+
concurrent-ruby (~> 1.0)
|
|
40
|
+
logger (1.7.0)
|
|
41
|
+
method_source (1.1.0)
|
|
42
|
+
minitest (6.0.2)
|
|
43
|
+
drb (~> 2.0)
|
|
44
|
+
prism (~> 1.5)
|
|
45
|
+
mutex_m (0.3.0)
|
|
46
|
+
nokogiri (1.19.1-aarch64-linux-gnu)
|
|
47
|
+
racc (~> 1.4)
|
|
48
|
+
nokogiri (1.19.1-aarch64-linux-musl)
|
|
49
|
+
racc (~> 1.4)
|
|
50
|
+
nokogiri (1.19.1-arm-linux-gnu)
|
|
51
|
+
racc (~> 1.4)
|
|
52
|
+
nokogiri (1.19.1-arm-linux-musl)
|
|
53
|
+
racc (~> 1.4)
|
|
54
|
+
nokogiri (1.19.1-arm64-darwin)
|
|
55
|
+
racc (~> 1.4)
|
|
56
|
+
nokogiri (1.19.1-x86_64-darwin)
|
|
57
|
+
racc (~> 1.4)
|
|
58
|
+
nokogiri (1.19.1-x86_64-linux-gnu)
|
|
59
|
+
racc (~> 1.4)
|
|
60
|
+
nokogiri (1.19.1-x86_64-linux-musl)
|
|
61
|
+
racc (~> 1.4)
|
|
62
|
+
prism (1.9.0)
|
|
63
|
+
pry (0.14.2)
|
|
64
|
+
coderay (~> 1.1)
|
|
65
|
+
method_source (~> 1.0)
|
|
66
|
+
pry-nav (1.0.0)
|
|
67
|
+
pry (>= 0.9.10, < 0.15)
|
|
68
|
+
racc (1.8.1)
|
|
69
|
+
rake (13.3.1)
|
|
70
|
+
securerandom (0.4.1)
|
|
71
|
+
thor (1.5.0)
|
|
72
|
+
tzinfo (2.0.6)
|
|
73
|
+
concurrent-ruby (~> 1.0)
|
|
74
|
+
|
|
75
|
+
PLATFORMS
|
|
76
|
+
aarch64-linux-gnu
|
|
77
|
+
aarch64-linux-musl
|
|
78
|
+
arm-linux-gnu
|
|
79
|
+
arm-linux-musl
|
|
80
|
+
arm64-darwin
|
|
81
|
+
x86_64-darwin
|
|
82
|
+
x86_64-linux-gnu
|
|
83
|
+
x86_64-linux-musl
|
|
84
|
+
|
|
85
|
+
DEPENDENCIES
|
|
86
|
+
activesupport (~> 7.1.0)
|
|
87
|
+
appraisal
|
|
88
|
+
pry
|
|
89
|
+
pry-nav
|
|
90
|
+
qbxml!
|
|
91
|
+
rake
|
|
92
|
+
|
|
93
|
+
BUNDLED WITH
|
|
94
|
+
2.6.9
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.5.0)
|
|
5
|
+
activesupport (>= 7.1.0)
|
|
6
|
+
bigdecimal
|
|
7
|
+
builder (~> 3.0)
|
|
8
|
+
nokogiri (~> 1.5)
|
|
9
|
+
|
|
10
|
+
GEM
|
|
11
|
+
remote: https://rubygems.org/
|
|
12
|
+
specs:
|
|
13
|
+
activesupport (7.2.2.1)
|
|
14
|
+
base64
|
|
15
|
+
benchmark (>= 0.3)
|
|
16
|
+
bigdecimal
|
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
18
|
+
connection_pool (>= 2.2.5)
|
|
19
|
+
drb
|
|
20
|
+
i18n (>= 1.6, < 2)
|
|
21
|
+
logger (>= 1.4.2)
|
|
22
|
+
minitest (>= 5.1)
|
|
23
|
+
securerandom (>= 0.3)
|
|
24
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
25
|
+
appraisal (2.5.0)
|
|
26
|
+
bundler
|
|
27
|
+
rake
|
|
28
|
+
thor (>= 0.14.0)
|
|
29
|
+
base64 (0.3.0)
|
|
30
|
+
benchmark (0.4.1)
|
|
31
|
+
bigdecimal (3.2.1)
|
|
32
|
+
builder (3.3.0)
|
|
33
|
+
coderay (1.1.3)
|
|
34
|
+
concurrent-ruby (1.3.5)
|
|
35
|
+
connection_pool (2.5.3)
|
|
36
|
+
drb (2.2.3)
|
|
37
|
+
i18n (1.14.7)
|
|
38
|
+
concurrent-ruby (~> 1.0)
|
|
39
|
+
logger (1.7.0)
|
|
40
|
+
method_source (1.1.0)
|
|
41
|
+
minitest (6.0.2)
|
|
42
|
+
drb (~> 2.0)
|
|
43
|
+
prism (~> 1.5)
|
|
44
|
+
nokogiri (1.19.1-x86_64-linux-gnu)
|
|
45
|
+
racc (~> 1.4)
|
|
46
|
+
prism (1.9.0)
|
|
47
|
+
pry (0.14.2)
|
|
48
|
+
coderay (~> 1.1)
|
|
49
|
+
method_source (~> 1.0)
|
|
50
|
+
pry-nav (1.0.0)
|
|
51
|
+
pry (>= 0.9.10, < 0.15)
|
|
52
|
+
racc (1.8.1)
|
|
53
|
+
rake (13.3.0)
|
|
54
|
+
securerandom (0.4.1)
|
|
55
|
+
thor (1.3.2)
|
|
56
|
+
tzinfo (2.0.6)
|
|
57
|
+
concurrent-ruby (~> 1.0)
|
|
58
|
+
|
|
59
|
+
PLATFORMS
|
|
60
|
+
x86_64-linux
|
|
61
|
+
|
|
62
|
+
DEPENDENCIES
|
|
63
|
+
activesupport (~> 7.2.0)
|
|
64
|
+
appraisal
|
|
65
|
+
pry
|
|
66
|
+
pry-nav
|
|
67
|
+
qbxml!
|
|
68
|
+
rake
|
|
69
|
+
|
|
70
|
+
BUNDLED WITH
|
|
71
|
+
2.6.9
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.5.0)
|
|
5
|
+
activesupport (>= 7.1.0)
|
|
6
|
+
bigdecimal
|
|
7
|
+
builder (~> 3.0)
|
|
8
|
+
nokogiri (~> 1.5)
|
|
9
|
+
|
|
10
|
+
GEM
|
|
11
|
+
remote: https://rubygems.org/
|
|
12
|
+
specs:
|
|
13
|
+
activesupport (8.0.2)
|
|
14
|
+
base64
|
|
15
|
+
benchmark (>= 0.3)
|
|
16
|
+
bigdecimal
|
|
17
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
18
|
+
connection_pool (>= 2.2.5)
|
|
19
|
+
drb
|
|
20
|
+
i18n (>= 1.6, < 2)
|
|
21
|
+
logger (>= 1.4.2)
|
|
22
|
+
minitest (>= 5.1)
|
|
23
|
+
securerandom (>= 0.3)
|
|
24
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
25
|
+
uri (>= 0.13.1)
|
|
26
|
+
appraisal (2.5.0)
|
|
27
|
+
bundler
|
|
28
|
+
rake
|
|
29
|
+
thor (>= 0.14.0)
|
|
30
|
+
base64 (0.3.0)
|
|
31
|
+
benchmark (0.4.1)
|
|
32
|
+
bigdecimal (3.2.2)
|
|
33
|
+
builder (3.3.0)
|
|
34
|
+
coderay (1.1.3)
|
|
35
|
+
concurrent-ruby (1.3.5)
|
|
36
|
+
connection_pool (2.5.3)
|
|
37
|
+
drb (2.2.3)
|
|
38
|
+
i18n (1.14.7)
|
|
39
|
+
concurrent-ruby (~> 1.0)
|
|
40
|
+
logger (1.7.0)
|
|
41
|
+
method_source (1.1.0)
|
|
42
|
+
minitest (6.0.2)
|
|
43
|
+
drb (~> 2.0)
|
|
44
|
+
prism (~> 1.5)
|
|
45
|
+
nokogiri (1.19.1-aarch64-linux-gnu)
|
|
46
|
+
racc (~> 1.4)
|
|
47
|
+
nokogiri (1.19.1-aarch64-linux-musl)
|
|
48
|
+
racc (~> 1.4)
|
|
49
|
+
nokogiri (1.19.1-arm-linux-gnu)
|
|
50
|
+
racc (~> 1.4)
|
|
51
|
+
nokogiri (1.19.1-arm-linux-musl)
|
|
52
|
+
racc (~> 1.4)
|
|
53
|
+
nokogiri (1.19.1-arm64-darwin)
|
|
54
|
+
racc (~> 1.4)
|
|
55
|
+
nokogiri (1.19.1-x86_64-darwin)
|
|
56
|
+
racc (~> 1.4)
|
|
57
|
+
nokogiri (1.19.1-x86_64-linux-gnu)
|
|
58
|
+
racc (~> 1.4)
|
|
59
|
+
nokogiri (1.19.1-x86_64-linux-musl)
|
|
60
|
+
racc (~> 1.4)
|
|
61
|
+
prism (1.9.0)
|
|
62
|
+
pry (0.14.2)
|
|
63
|
+
coderay (~> 1.1)
|
|
64
|
+
method_source (~> 1.0)
|
|
65
|
+
pry-nav (1.0.0)
|
|
66
|
+
pry (>= 0.9.10, < 0.15)
|
|
67
|
+
racc (1.8.1)
|
|
68
|
+
rake (13.3.0)
|
|
69
|
+
securerandom (0.4.1)
|
|
70
|
+
thor (1.3.2)
|
|
71
|
+
tzinfo (2.0.6)
|
|
72
|
+
concurrent-ruby (~> 1.0)
|
|
73
|
+
uri (1.0.3)
|
|
74
|
+
|
|
75
|
+
PLATFORMS
|
|
76
|
+
aarch64-linux-gnu
|
|
77
|
+
aarch64-linux-musl
|
|
78
|
+
arm-linux-gnu
|
|
79
|
+
arm-linux-musl
|
|
80
|
+
arm64-darwin
|
|
81
|
+
x86_64-darwin
|
|
82
|
+
x86_64-linux-gnu
|
|
83
|
+
x86_64-linux-musl
|
|
84
|
+
|
|
85
|
+
DEPENDENCIES
|
|
86
|
+
activesupport (~> 8.0.0)
|
|
87
|
+
appraisal
|
|
88
|
+
pry
|
|
89
|
+
pry-nav
|
|
90
|
+
qbxml!
|
|
91
|
+
rake
|
|
92
|
+
|
|
93
|
+
BUNDLED WITH
|
|
94
|
+
2.6.9
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
qbxml (0.5.0)
|
|
5
|
+
activesupport (>= 7.1.0)
|
|
6
|
+
bigdecimal
|
|
7
|
+
builder (~> 3.0)
|
|
8
|
+
nokogiri (~> 1.5)
|
|
9
|
+
|
|
10
|
+
GEM
|
|
11
|
+
remote: https://rubygems.org/
|
|
12
|
+
specs:
|
|
13
|
+
activesupport (8.1.1)
|
|
14
|
+
base64
|
|
15
|
+
bigdecimal
|
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
17
|
+
connection_pool (>= 2.2.5)
|
|
18
|
+
drb
|
|
19
|
+
i18n (>= 1.6, < 2)
|
|
20
|
+
json
|
|
21
|
+
logger (>= 1.4.2)
|
|
22
|
+
minitest (>= 5.1)
|
|
23
|
+
securerandom (>= 0.3)
|
|
24
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
25
|
+
uri (>= 0.13.1)
|
|
26
|
+
appraisal (2.5.0)
|
|
27
|
+
bundler
|
|
28
|
+
rake
|
|
29
|
+
thor (>= 0.14.0)
|
|
30
|
+
base64 (0.3.0)
|
|
31
|
+
bigdecimal (3.3.1)
|
|
32
|
+
builder (3.3.0)
|
|
33
|
+
coderay (1.1.3)
|
|
34
|
+
concurrent-ruby (1.3.5)
|
|
35
|
+
connection_pool (2.5.4)
|
|
36
|
+
drb (2.2.3)
|
|
37
|
+
i18n (1.14.7)
|
|
38
|
+
concurrent-ruby (~> 1.0)
|
|
39
|
+
json (2.16.0)
|
|
40
|
+
logger (1.7.0)
|
|
41
|
+
method_source (1.1.0)
|
|
42
|
+
minitest (6.0.2)
|
|
43
|
+
drb (~> 2.0)
|
|
44
|
+
prism (~> 1.5)
|
|
45
|
+
nokogiri (1.19.1-aarch64-linux-gnu)
|
|
46
|
+
racc (~> 1.4)
|
|
47
|
+
nokogiri (1.19.1-aarch64-linux-musl)
|
|
48
|
+
racc (~> 1.4)
|
|
49
|
+
nokogiri (1.19.1-arm-linux-gnu)
|
|
50
|
+
racc (~> 1.4)
|
|
51
|
+
nokogiri (1.19.1-arm-linux-musl)
|
|
52
|
+
racc (~> 1.4)
|
|
53
|
+
nokogiri (1.19.1-arm64-darwin)
|
|
54
|
+
racc (~> 1.4)
|
|
55
|
+
nokogiri (1.19.1-x86_64-darwin)
|
|
56
|
+
racc (~> 1.4)
|
|
57
|
+
nokogiri (1.19.1-x86_64-linux-gnu)
|
|
58
|
+
racc (~> 1.4)
|
|
59
|
+
nokogiri (1.19.1-x86_64-linux-musl)
|
|
60
|
+
racc (~> 1.4)
|
|
61
|
+
prism (1.9.0)
|
|
62
|
+
pry (0.14.2)
|
|
63
|
+
coderay (~> 1.1)
|
|
64
|
+
method_source (~> 1.0)
|
|
65
|
+
pry-nav (1.0.0)
|
|
66
|
+
pry (>= 0.9.10, < 0.15)
|
|
67
|
+
racc (1.8.1)
|
|
68
|
+
rake (13.3.1)
|
|
69
|
+
securerandom (0.4.1)
|
|
70
|
+
thor (1.4.0)
|
|
71
|
+
tzinfo (2.0.6)
|
|
72
|
+
concurrent-ruby (~> 1.0)
|
|
73
|
+
uri (1.1.1)
|
|
74
|
+
|
|
75
|
+
PLATFORMS
|
|
76
|
+
aarch64-linux-gnu
|
|
77
|
+
aarch64-linux-musl
|
|
78
|
+
arm-linux-gnu
|
|
79
|
+
arm-linux-musl
|
|
80
|
+
arm64-darwin
|
|
81
|
+
x86_64-darwin
|
|
82
|
+
x86_64-linux-gnu
|
|
83
|
+
x86_64-linux-musl
|
|
84
|
+
|
|
85
|
+
DEPENDENCIES
|
|
86
|
+
activesupport (~> 8.1.0)
|
|
87
|
+
appraisal
|
|
88
|
+
pry
|
|
89
|
+
pry-nav
|
|
90
|
+
qbxml!
|
|
91
|
+
rake
|
|
92
|
+
|
|
93
|
+
BUNDLED WITH
|
|
94
|
+
2.6.9
|
data/lib/qbxml/hash.rb
CHANGED
data/lib/qbxml/types.rb
CHANGED
data/lib/qbxml/version.rb
CHANGED
data/lib/qbxml.rb
CHANGED
data/qbxml.gemspec
CHANGED
|
@@ -17,9 +17,12 @@ Gem::Specification.new do |gem|
|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
gem.
|
|
20
|
+
gem.required_ruby_version = '>= 3.2'
|
|
21
|
+
|
|
22
|
+
gem.add_dependency('activesupport', '>= 7.1.0')
|
|
21
23
|
gem.add_dependency('nokogiri', '~> 1.5')
|
|
22
24
|
gem.add_dependency('builder', '~> 3.0')
|
|
25
|
+
gem.add_dependency('bigdecimal')
|
|
23
26
|
|
|
24
27
|
gem.add_development_dependency('pry')
|
|
25
28
|
gem.add_development_dependency('pry-nav')
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qbxml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Skryl
|
|
8
8
|
- Jason Barnabe
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: activesupport
|
|
@@ -17,14 +16,14 @@ dependencies:
|
|
|
17
16
|
requirements:
|
|
18
17
|
- - ">="
|
|
19
18
|
- !ruby/object:Gem::Version
|
|
20
|
-
version:
|
|
19
|
+
version: 7.1.0
|
|
21
20
|
type: :runtime
|
|
22
21
|
prerelease: false
|
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
23
|
requirements:
|
|
25
24
|
- - ">="
|
|
26
25
|
- !ruby/object:Gem::Version
|
|
27
|
-
version:
|
|
26
|
+
version: 7.1.0
|
|
28
27
|
- !ruby/object:Gem::Dependency
|
|
29
28
|
name: nokogiri
|
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -53,6 +52,20 @@ dependencies:
|
|
|
53
52
|
- - "~>"
|
|
54
53
|
- !ruby/object:Gem::Version
|
|
55
54
|
version: '3.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: bigdecimal
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
56
69
|
- !ruby/object:Gem::Dependency
|
|
57
70
|
name: pry
|
|
58
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -117,22 +130,21 @@ executables: []
|
|
|
117
130
|
extensions: []
|
|
118
131
|
extra_rdoc_files: []
|
|
119
132
|
files:
|
|
133
|
+
- ".github/workflows/ci.yml"
|
|
120
134
|
- ".gitignore"
|
|
121
135
|
- Appraisals
|
|
122
136
|
- Gemfile
|
|
123
137
|
- LICENSE.txt
|
|
124
138
|
- README.md
|
|
125
139
|
- Rakefile
|
|
126
|
-
- gemfiles/
|
|
127
|
-
- gemfiles/
|
|
128
|
-
- gemfiles/
|
|
129
|
-
- gemfiles/
|
|
130
|
-
- gemfiles/
|
|
131
|
-
- gemfiles/
|
|
132
|
-
- gemfiles/
|
|
133
|
-
- gemfiles/
|
|
134
|
-
- gemfiles/rails_6.1.gemfile
|
|
135
|
-
- gemfiles/rails_6.1.gemfile.lock
|
|
140
|
+
- gemfiles/rails_7.1.gemfile
|
|
141
|
+
- gemfiles/rails_7.1.gemfile.lock
|
|
142
|
+
- gemfiles/rails_7.2.gemfile
|
|
143
|
+
- gemfiles/rails_7.2.gemfile.lock
|
|
144
|
+
- gemfiles/rails_8.0.gemfile
|
|
145
|
+
- gemfiles/rails_8.0.gemfile.lock
|
|
146
|
+
- gemfiles/rails_8.1.gemfile
|
|
147
|
+
- gemfiles/rails_8.1.gemfile.lock
|
|
136
148
|
- lib/qbxml.rb
|
|
137
149
|
- lib/qbxml/hash.rb
|
|
138
150
|
- lib/qbxml/qbxml.rb
|
|
@@ -160,7 +172,6 @@ files:
|
|
|
160
172
|
homepage: ''
|
|
161
173
|
licenses: []
|
|
162
174
|
metadata: {}
|
|
163
|
-
post_install_message:
|
|
164
175
|
rdoc_options: []
|
|
165
176
|
require_paths:
|
|
166
177
|
- lib
|
|
@@ -168,15 +179,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
168
179
|
requirements:
|
|
169
180
|
- - ">="
|
|
170
181
|
- !ruby/object:Gem::Version
|
|
171
|
-
version: '
|
|
182
|
+
version: '3.2'
|
|
172
183
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
184
|
requirements:
|
|
174
185
|
- - ">="
|
|
175
186
|
- !ruby/object:Gem::Version
|
|
176
187
|
version: '0'
|
|
177
188
|
requirements: []
|
|
178
|
-
rubygems_version: 3.
|
|
179
|
-
signing_key:
|
|
189
|
+
rubygems_version: 3.6.9
|
|
180
190
|
specification_version: 4
|
|
181
191
|
summary: Quickbooks XML Parser and Validation Tool
|
|
182
192
|
test_files:
|
|
@@ -1,69 +0,0 @@
|
|
|
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
|
|
@@ -1,69 +0,0 @@
|
|
|
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
|
|
@@ -1,69 +0,0 @@
|
|
|
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
|
|
@@ -1,71 +0,0 @@
|
|
|
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
|
data/gemfiles/rails_6.1.gemfile
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
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
|