compactor 0.3.3 → 0.3.4
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.
- data/Gemfile.lock +1 -1
- data/compactor-0.3.3.gem +0 -0
- data/lib/compactor/scraped_row.rb +1 -1
- data/lib/compactor/version.rb +1 -1
- data/lib/compactor/xml_parser.rb +1 -1
- data/test/scraped_row_test.rb +6 -6
- metadata +3 -2
data/Gemfile.lock
CHANGED
data/compactor-0.3.3.gem
ADDED
Binary file
|
@@ -88,7 +88,7 @@ module Compactor
|
|
88
88
|
parser = Compactor::Amazon::XmlParser.new(r_data)
|
89
89
|
unless parser.valid?
|
90
90
|
error_message = \
|
91
|
-
"Amazon
|
91
|
+
"Amazon generated report has a TotalAmount discrepancy. {" +
|
92
92
|
"type: XML, " +
|
93
93
|
"expected total: $#{"%.2f" % parser.expected_total}, " +
|
94
94
|
"calculated total: $#{"%.2f" % parser.calculated_total}, " +
|
data/lib/compactor/version.rb
CHANGED
data/lib/compactor/xml_parser.rb
CHANGED
data/test/scraped_row_test.rb
CHANGED
@@ -61,9 +61,9 @@ class ScrapedRowTest < Test::Unit::TestCase
|
|
61
61
|
report_data = <<-XML
|
62
62
|
<xml>
|
63
63
|
<report>
|
64
|
-
|
65
|
-
|
66
|
-
|
64
|
+
<TotalAmount>10</TotalAmount>
|
65
|
+
<Amount>5</Amount>
|
66
|
+
<Amount>5</Amount>
|
67
67
|
</report>
|
68
68
|
</xml>
|
69
69
|
XML
|
@@ -75,9 +75,9 @@ class ScrapedRowTest < Test::Unit::TestCase
|
|
75
75
|
report_data = <<-XML
|
76
76
|
<xml>
|
77
77
|
<report>
|
78
|
-
|
79
|
-
|
80
|
-
|
78
|
+
<TotalAmount>10</TotalAmount>
|
79
|
+
<Amount>5</Amount>
|
80
|
+
<Amount>4</Amount>
|
81
81
|
</report>
|
82
82
|
</xml>
|
83
83
|
XML
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 4
|
9
|
+
version: 0.3.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Julio Santos
|
@@ -149,6 +149,7 @@ files:
|
|
149
149
|
- README.md
|
150
150
|
- Rakefile
|
151
151
|
- compactor-0.2.3.gem
|
152
|
+
- compactor-0.3.3.gem
|
152
153
|
- compactor.gemspec
|
153
154
|
- lib/compactor.rb
|
154
155
|
- lib/compactor/extensions.rb
|