bin/sixword in sixword-0.3.3 vs bin/sixword in sixword-0.3.4
- old
+ new
@@ -84,11 +84,18 @@
opts.on('-H', '--hex', 'Short for --hex-style lowercase') do
options[:hex_style] = 'lowercase'
end
- opts.on('-f', '--fingerprint', 'Short for --hex-style fingerprint') do
+ opts.on('-f', '--fingerprint', 'Short for --hex-style fingerprint', ' ') do
options[:hex_style] = 'fingerprint'
+ end
+
+ #
+
+ opts.on('-w', '--line-width NUM',
+ 'Print NUM sentences per line when encoding') do |arg|
+ options[:line_width] = Integer(arg)
end
end
begin
optparse.parse!