From 3850075609a9023d30e1d9a545847ed0cc7267c3 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Thu, 4 Feb 2016 17:46:28 +0100 Subject: [PATCH] fix rubocop --- bin/inspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/inspec b/bin/inspec index b45e9386b..1a7757c47 100755 --- a/bin/inspec +++ b/bin/inspec @@ -74,7 +74,7 @@ class InspecCLI < Thor # rubocop:disable Metrics/ClassLength desc 'check PATH', 'verify all tests at the specified PATH' option :format, type: :string - def check(path) + def check(path) # rubocop:disable Metrics/AbcSize diagnose o = opts.dup # configure_logger(o) # we do not need a logger for check yet @@ -243,7 +243,7 @@ class InspecCLI < Thor # rubocop:disable Metrics/ClassLength def headline(title) puts title - title.each_char {|c| print '-' } + title.each_char { print '-' } newline end