pdd 0.19 → 0.19.1
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/pdd +7 -4
- data/lib/pdd/source.rb +0 -3
- data/lib/pdd/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70605c231a2b289a5a6596696970d736a82742bb
|
4
|
+
data.tar.gz: bfa4a9fbb46cd693337eb82c1658c2843e68ed17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ab6a6b36484213810dca3494b66cef150c413f7fbb6f29f8953724ceca0d1fc53f268bce66f369484511d290592f5ce0a66d598803367c0786b85d561b564ad
|
7
|
+
data.tar.gz: fa42c284c924fcb9fa9dec2ab659ea8fa75927f4ac4d530b6192e7f2b248d41058c6905deb7da77c445fcdc2c808994c87392c974cdb2379f792895d687f50ce
|
data/bin/pdd
CHANGED
@@ -98,15 +98,18 @@ https://github.com/yegor256/pdd/blob/master/README.md"
|
|
98
98
|
rescue SystemExit => ex
|
99
99
|
puts ex.message unless ex.success?
|
100
100
|
exit(ex.status)
|
101
|
-
rescue
|
102
|
-
puts "#{Rainbow('ERROR').red}: #{ex.message}
|
103
|
-
|
101
|
+
rescue PDD::Error => ex
|
102
|
+
puts "#{Rainbow('ERROR').red}: #{ex.message}. \
|
103
|
+
If you can't understand the cause of this issue or you don't know \
|
104
104
|
how to fix it, please submit a GitHub issue, we will try to help you: \
|
105
105
|
https://github.com/yegor256/pdd/issues. This tool is still in its beta \
|
106
106
|
version and we will appreciate your feedback. Here is where you can find \
|
107
107
|
more documentation: https://github.com/yegor256/pdd/blob/master/README.md."
|
108
108
|
exit(1)
|
109
109
|
rescue StandardError => ex
|
110
|
-
puts "#{Rainbow('ERROR').red}: #{ex.message}"
|
110
|
+
puts "#{Rainbow('ERROR').red} (#{ex.class.name}): #{ex.message}"
|
111
111
|
exit(-1)
|
112
112
|
end
|
113
|
+
|
114
|
+
# @todo xx
|
115
|
+
|
data/lib/pdd/source.rb
CHANGED
data/lib/pdd/version.rb
CHANGED