On Mon, Sep 28, 2020 at 07:10:34PM +0800, Luan Shengde wrote:
On Mon, Sep 28, 2020 at 04:34:24PM +0800, Tong Qunfeng wrote:
Usage: delete_task task_id[|task_ids file]
+if ARGV.size < 1
you can use: if ARGV[0] or if ARGV.none? or if ARGV.size.positive instead
Thanks Luan Shengde
got. use "ARGV.empty?" and fix other rubocop warning.