jsonerino 0.2.3 → 0.2.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.
- checksums.yaml +4 -4
- data/bin/jsonerino +1 -1
- data/lib/jsonerino/version.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: 5b620db51e12438a6869c88c710e24930bc9c45c1b603beeb435a51e52ecf775
|
|
4
|
+
data.tar.gz: 0f2117a2dc4a6cc8d858e8f59710f17d0a7e4745791ff4aec2461af1f797bbe5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb7ec89a2cf01f7c4ca9af07edd269e56eb1456a1a3c2c676a2c8bb142ef050992a311c4331a463fcd14a9118c92ab53f267cb5c6439854bf880d651c9de0ab3
|
|
7
|
+
data.tar.gz: 3ef92962f44eebac5aca1d3cc2fb29d7c7a908d8b4d92bf582335315a42a99bc6e8d17faa7b44d72919506bd4caf92cb5329fef81d5d252afcf160aafc473c8a
|
data/bin/jsonerino
CHANGED
|
@@ -36,7 +36,7 @@ else
|
|
|
36
36
|
Jsonerino.parse contents
|
|
37
37
|
rescue StandardError => e
|
|
38
38
|
puts colorize("The parsing of '#{filename}' has failed with error", COLORS[0])
|
|
39
|
-
puts colorize(e, COLORS[0])
|
|
39
|
+
puts colorize(e.message, COLORS[0])
|
|
40
40
|
else
|
|
41
41
|
puts colorize("The parsing of `#{filename}` has succeeded. The file contains valid JSON data", COLORS[1])
|
|
42
42
|
end
|
data/lib/jsonerino/version.rb
CHANGED