how_is 6.0.0 → 7.0.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/exe/how_is +5 -0
- data/lib/how_is/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: c897464f1d08f8a1a473d5fea4d754433aa5e10c
|
4
|
+
data.tar.gz: 1a195eb6fcb293c08142a5cb2186f2137ded240f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74dfdfa4480ce9ba4722ea2af0b2b8af91c0695efa688ad038d766f3a775c8bee646d0f7bd8891e50c6942e64b0be5f426ec564c7a9fdae428b0db5b27764532
|
7
|
+
data.tar.gz: ced753d73cb82ba82def47e56cface1072e6b954cfe8fb9f0835889675d47fe6eae4c30f64a43f80fa300bc8df378a4a3fe8501257901649c6bb078f41fa91ce
|
data/exe/how_is
CHANGED
@@ -43,6 +43,11 @@ opts = OptionParser.new do |opts|
|
|
43
43
|
opts.on("--report REPORT_FILE", "file containing the report") do |file|
|
44
44
|
options[:report_file] = file
|
45
45
|
end
|
46
|
+
|
47
|
+
opts.on("-v", "--version", "prints the version") do
|
48
|
+
puts HowIs::VERSION
|
49
|
+
exit
|
50
|
+
end
|
46
51
|
end
|
47
52
|
opts.parse!
|
48
53
|
|
data/lib/how_is/version.rb
CHANGED