bin/yawast in yawast-0.3.0 vs bin/yawast in yawast-0.4.0.beta1
- old
+ new
@@ -65,5 +65,16 @@
c.action do |args, options|
Yawast::Commands::Cms.process(args, options)
end
end
+
+command :cert do |c|
+ c.syntax = './yawast cert --input <file>'
+ c.description = 'Gets information about the certificates used'
+
+ c.option '--input STRING', String, 'List of domains to check'
+
+ c.action do |args, options|
+ Yawast::Commands::Cert.process(options)
+ end
+end