From b5b3430d4635682b767c44469e28a70fe234187e Mon Sep 17 00:00:00 2001 From: Kornelius Kalnbach Date: Sun, 24 Nov 2019 15:22:21 +0100 Subject: fix spaces around operators (RuboCop) --- rake_tasks/code_statistics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rake_tasks/code_statistics.rb') diff --git a/rake_tasks/code_statistics.rb b/rake_tasks/code_statistics.rb index 0a2016b..32eb3f0 100644 --- a/rake_tasks/code_statistics.rb +++ b/rake_tasks/code_statistics.rb @@ -156,7 +156,7 @@ private code = calculate_code tests = calculate_tests - puts " Code LOC = #{code} Test LOC = #{tests} Code:Test Ratio = [1 : #{sprintf("%.2f", tests.to_f/code)}]" + puts " Code LOC = #{code} Test LOC = #{tests} Code:Test Ratio = [1 : #{sprintf("%.2f", tests.to_f / code)}]" puts "" end -- cgit v1.2.1