qbxml 0.3.0 → 0.5.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.
Files changed (45) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +2 -0
  3. data/Appraisals +19 -0
  4. data/README.md +1 -5
  5. data/gemfiles/rails_5.0.gemfile +7 -0
  6. data/gemfiles/rails_5.0.gemfile.lock +69 -0
  7. data/gemfiles/rails_5.1.gemfile +7 -0
  8. data/gemfiles/rails_5.1.gemfile.lock +69 -0
  9. data/gemfiles/rails_5.2.gemfile +7 -0
  10. data/gemfiles/rails_5.2.gemfile.lock +69 -0
  11. data/gemfiles/rails_6.0.gemfile +7 -0
  12. data/gemfiles/rails_6.0.gemfile.lock +71 -0
  13. data/gemfiles/rails_6.1.gemfile +7 -0
  14. data/gemfiles/rails_6.1.gemfile.lock +70 -0
  15. data/lib/qbxml/hash.rb +25 -2
  16. data/lib/qbxml/qbxml.rb +2 -1
  17. data/lib/qbxml/types.rb +2 -2
  18. data/lib/qbxml/version.rb +1 -1
  19. data/lib/qbxml.rb +0 -1
  20. data/qbxml.gemspec +2 -3
  21. data/schema/qbxmlops140.xml +35792 -0
  22. data/test/unit/xml_to_hash_test.rb +252 -1
  23. metadata +19 -65
  24. data/.travis.yml +0 -6
  25. data/spec/backwards_compatibility.rb +0 -26
  26. data/spec/spec_helper.rb +0 -25
  27. data/spec/support/requests/account_query_rq.xml +0 -8
  28. data/spec/support/requests/customer_add_rq.xml +0 -28
  29. data/spec/support/requests/customer_query_iterator_rq.xml +0 -11
  30. data/spec/support/requests/customer_query_rq.xml +0 -9
  31. data/spec/support/requests/estimate_add_rq.xml +0 -45
  32. data/spec/support/requests/invoice_add_rq.xml +0 -40
  33. data/spec/support/requests/item_inventory_add_rq.xml +0 -22
  34. data/spec/support/requests/purchase_order_query_rq.xml +0 -14
  35. data/spec/support/requests/receive_payment_add_rq.xml +0 -35
  36. data/spec/support/requests/receive_payment_query_rq.xml +0 -9
  37. data/spec/support/requests/sales_receipt_add_rq.xml +0 -49
  38. data/spec/support/responses/account_query_rs.xml +0 -42
  39. data/spec/support/responses/customer_add_rs.xml +0 -37
  40. data/spec/support/responses/customer_query_rs.xml +0 -49
  41. data/spec/support/responses/customer_query_terator_rs.xml +0 -34
  42. data/spec/support/responses/item_inventory_add_rs.xml +0 -40
  43. data/spec/support/responses/purchase_order_query_rs.xml +0 -84
  44. data/spec/support/responses/receive_payment_query_rs.xml +0 -51
  45. data/spec/support/responses/sales_receipt_add_rs.xml +0 -89
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 11572014f70b00b684710498b5f2072e4c716a34
4
- data.tar.gz: d8d4be361ed0a330345637c270221fb06f1f03c0
2
+ SHA256:
3
+ metadata.gz: 61135e2c11cfa488b1ee0d6c3250521b71d53172cdac2d5655d8f66df366f2ec
4
+ data.tar.gz: d377d040655d3d5418b51f0bff91cae3892c5849833ae5c362b9672248b4295b
5
5
  SHA512:
6
- metadata.gz: bfac0afceeca6efd56a5459f0c21b1180d76c6705ff070a30d254db62c35255015e66d1be3ecc6fe88272b0f351ca18d06e38c0f32e5e9b810c871d324720436
7
- data.tar.gz: eb5a9c9a4346d810b638000608ef37f02d382a5dc9683576bc67f757af49a0b0e66fbcb1bcd691c171bd1ea6d861941fd80510175857ebf83d69bc95d56feb47
6
+ metadata.gz: 749aaad56c717882a72df59af3ffa45a888b23993e2ae3aa895cbb4290b9f596cfa82fe9c72b0af1ac13c602e399b92c1892970070a1a7af226e654706a5fb02
7
+ data.tar.gz: 7192b2f6fe30c81f9da979fd62c8d939ee3c8cc2e80907c13c0e3b97e73ea4421c4c5ad09ab4175393937257e6506f1b5df6040d67fd034d76e1018e8a1e10ba
data/.gitignore CHANGED
@@ -17,3 +17,5 @@ test/version_tmp
17
17
  tmp
18
18
  .ruby-version
19
19
  .ruby-gemset
20
+ .idea
21
+ gemfiles/vendor
data/Appraisals ADDED
@@ -0,0 +1,19 @@
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
data/README.md CHANGED
@@ -1,8 +1,4 @@
1
- # Qbxml
2
-
3
- [![Build Status](https://travis-ci.org/qbwc/qbxml.svg?branch=master)](https://travis-ci.org/qbwc/qbxml)
4
-
5
- Qbxml is a QBXML parser and validation tool.
1
+ qbxml is a QBXML parser and validation tool. QBXML is used when integrating with QuickBooks Desktop. If you use QuickBooks Online, look elsewhere.
6
2
 
7
3
  ## Installation
8
4
 
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 5.0.0"
6
+
7
+ gemspec path: "../"
@@ -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,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 5.1.0"
6
+
7
+ gemspec path: "../"
@@ -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,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 5.2.0"
6
+
7
+ gemspec path: "../"
@@ -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,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 6.0.0"
6
+
7
+ gemspec path: "../"
@@ -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,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activesupport", "~> 6.1.0"
6
+
7
+ gemspec path: "../"
@@ -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
data/lib/qbxml/hash.rb CHANGED
@@ -28,7 +28,7 @@ class Qbxml::Hash < ::Hash
28
28
  end
29
29
 
30
30
  def to_xml(opts = {})
31
- hash = self.class.to_xml(self, opts)
31
+ self.class.to_xml(self, opts)
32
32
  end
33
33
 
34
34
  def self.to_xml(hash, opts = {})
@@ -85,15 +85,23 @@ private
85
85
  name = node.name
86
86
  schema = opts[:schema]
87
87
  opts[:typecast_cache] ||= {}
88
+ opts[:is_repetitive_cache] ||= {}
88
89
 
89
90
  # Insert node hash into parent hash correctly.
90
91
  case hash[name]
91
92
  when Array
92
93
  hash[name] << node_hash
93
94
  when Hash, String
95
+ # This parent has multiple nodes with the same name, but when we checked the first time,
96
+ # we found it is not defined as repetitive. I guess this means the schema is a liar.
94
97
  hash[name] = [hash[name], node_hash]
95
98
  else
96
- hash[name] = node_hash
99
+ # We didn't see this node name under this parent yet.
100
+ if is_repetitive?(schema, node.path, opts[:is_repetitive_cache])
101
+ hash[name] = [node_hash]
102
+ else
103
+ hash[name] = node_hash
104
+ end
97
105
  end
98
106
 
99
107
  # Handle child elements
@@ -142,6 +150,21 @@ private
142
150
  type_proc[value]
143
151
  end
144
152
 
153
+ # Determines if the node is repetitive. Just because something is repetitive doesn't mean it always repeats.
154
+ # For example, a customer query could return 1 result or 100, but in both cases, we should be returning an
155
+ # Array.
156
+ def self.is_repetitive?(schema, xpath, is_repetitive_cache)
157
+ # Yes, we are parsing comments.
158
+ comment_path = xpath.gsub(/\[\d+\]/,'') + "/comment()"
159
+ return is_repetitive_cache[comment_path] || parse_repetitive_from_comment(schema, comment_path)
160
+ end
161
+
162
+ def self.parse_repetitive_from_comment(schema, comment_path)
163
+ comment = schema.xpath(comment_path).first
164
+ return false if comment.nil?
165
+ return comment.text.include?('may rep')
166
+ end
167
+
145
168
  def self.deep_convert(hash, opts = {}, &block)
146
169
  hash.inject(self.new) do |h, (k,v)|
147
170
  k = k.to_s
data/lib/qbxml/qbxml.rb CHANGED
@@ -17,7 +17,8 @@ class Qbxml
17
17
  "10.0" => "#{SCHEMA_PATH}/qbxmlops100.xml",
18
18
  "11.0" => "#{SCHEMA_PATH}/qbxmlops110.xml",
19
19
  "12.0" => "#{SCHEMA_PATH}/qbxmlops120.xml",
20
- "13.0" => "#{SCHEMA_PATH}/qbxmlops130.xml"
20
+ "13.0" => "#{SCHEMA_PATH}/qbxmlops130.xml",
21
+ "14.0" => "#{SCHEMA_PATH}/qbxmlops140.xml"
21
22
  },
22
23
  qbpos: {
23
24
  "3.0" => "#{SCHEMA_PATH}/qbposxmlops30.xml"
data/lib/qbxml/types.rb CHANGED
@@ -5,13 +5,13 @@ module Qbxml::Types
5
5
  :qbpos => :qbposxml
6
6
  }.freeze
7
7
 
8
- FLOAT_CAST = Proc.new {|d| d ? Float(d) : 0.0}
8
+ FLOAT_CAST = Proc.new {|d| d ? d.to_f : 0.0}
9
9
  BOOL_CAST = Proc.new {|d| d ? (d.to_s.downcase == 'true' ? true : false) : false }
10
10
  DATE_CAST = Proc.new {|d| d ? Date.parse(d).strftime("%Y-%m-%d") : Date.today.strftime("%Y-%m-%d") }
11
11
  TIME_CAST = Proc.new {|d| d ? Time.parse(d).xmlschema : Time.now.xmlschema }
12
12
  INT_CAST = Proc.new {|d| d ? Integer(d.to_i) : 0 }
13
13
  STR_CAST = Proc.new {|d| d ? String(d) : ''}
14
- BIGDECIMAL_CAST = Proc.new {|d| d ? BigDecimal.new(d) : 0.0}
14
+ BIGDECIMAL_CAST = Proc.new {|d| d ? BigDecimal(d) : 0.0}
15
15
 
16
16
  TYPE_MAP= {
17
17
  "AMTTYPE" => FLOAT_CAST,
data/lib/qbxml/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Qbxml
2
- VERSION = "0.3.0"
2
+ VERSION = "0.5.0"
3
3
  end
data/lib/qbxml.rb CHANGED
@@ -2,7 +2,6 @@ require "qbxml/version"
2
2
 
3
3
  require 'nokogiri'
4
4
  require 'active_support/builder'
5
- require 'active_support/inflections'
6
5
  require 'active_support/core_ext/string'
7
6
 
8
7
  class Qbxml; end
data/qbxml.gemspec CHANGED
@@ -17,13 +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.add_dependency('activesupport', '>= 3.2.9')
20
+ gem.add_dependency('activesupport', '>= 5.0.0')
21
21
  gem.add_dependency('nokogiri', '~> 1.5')
22
22
  gem.add_dependency('builder', '~> 3.0')
23
23
 
24
24
  gem.add_development_dependency('pry')
25
25
  gem.add_development_dependency('pry-nav')
26
- gem.add_development_dependency('rspec')
27
- gem.add_development_dependency('simplecov')
28
26
  gem.add_development_dependency('rake')
27
+ gem.add_development_dependency('appraisal')
29
28
  end