zipfy 1.0.3 → 1.1.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.
- checksums.yaml +4 -4
- data/bin/zipfy +2 -2
- data/lib/zipfy/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: 721b5ead6f42678c0551e973119a6ae5ef67b6a0
|
4
|
+
data.tar.gz: 0ebfa99f2381d0285ecb7c6367a5c36f3b56a2eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 475141eb70baf3587133c987b3060c87cb0d147488b9a70526f170da4ce917d4d3ad9d52abefdc66c3bf01ce146c1081c38ea2c0eb74e58a83f571dc6af8e361
|
7
|
+
data.tar.gz: 2eb82c4da7b9465b9fd3c9a0230c59732cec4b005534b805df716d7cd2051b2b4d966983e56314c46bad171e3359b34399b3398ad0aebe16d6f8cfc69785e025
|
data/bin/zipfy
CHANGED
@@ -58,11 +58,11 @@ end
|
|
58
58
|
|
59
59
|
file_path = ARGV[0]
|
60
60
|
if !file_path && !excerpt
|
61
|
-
puts "Please specify a file or excerpt to evaluate. Run zipf -h for more information"
|
61
|
+
STDERR.puts "Please specify a file or excerpt to evaluate. Run zipf -h for more information"
|
62
62
|
exit
|
63
63
|
end
|
64
64
|
if file_path && excerpt
|
65
|
-
puts "Please specify either a file or an excerpt, not both"
|
65
|
+
STDERR.puts "Please specify either a file or an excerpt, not both"
|
66
66
|
exit
|
67
67
|
end
|
68
68
|
|
data/lib/zipfy/version.rb
CHANGED