toccatore 0.4.7 → 0.4.8
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/Gemfile.lock +1 -1
- data/lib/toccatore/usage_update.rb +4 -0
- data/lib/toccatore/version.rb +1 -1
- data/spec/cli_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55e2a53127ea93f4ff29eae04869643a71cf93d7dfbbef5c5adb08ba9429a554
|
4
|
+
data.tar.gz: 0255e46b3397ab45fe7907af3df06eecf56c10c8a17990635407810571c9477b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5534fdb448aeed235bed5b00071075aed4003607223c780420f89586bf99bae16d459024ede6fc32103918dc513dd4437377a4c3c6a78f0348c9a73d7b6cb10c
|
7
|
+
data.tar.gz: 0b290fb6ce398e87d601b3356cdd6e1818b538c444c8f2b62ffece7ee953857f8be6e13185b1c55072473940493e2bfcc9d54c2a4e69975e66e3e9224613e442
|
data/Gemfile.lock
CHANGED
@@ -71,6 +71,8 @@ module Toccatore
|
|
71
71
|
else
|
72
72
|
error_total = 0
|
73
73
|
Array(items).each do |item|
|
74
|
+
puts item
|
75
|
+
puts "*************"
|
74
76
|
error_total += push_item(item, options)
|
75
77
|
end
|
76
78
|
error_total
|
@@ -104,6 +106,8 @@ module Toccatore
|
|
104
106
|
end
|
105
107
|
|
106
108
|
def parse_data(result, options={})
|
109
|
+
puts result.status
|
110
|
+
puts "*************"
|
107
111
|
return result.body.fetch("errors") if result.body.fetch("errors", nil).present?
|
108
112
|
return [{ "errors" => { "title" => "The report is blank" }}] if result.body.blank?
|
109
113
|
|
data/lib/toccatore/version.rb
CHANGED
data/spec/cli_spec.rb
CHANGED