summaryrefslogtreecommitdiff
path: root/rake_tasks
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2019-11-24 15:22:21 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2019-11-24 15:22:21 +0100
commitb5b3430d4635682b767c44469e28a70fe234187e (patch)
tree97eeeea923848158dfedd8e60142511a72839363 /rake_tasks
parent591c67b65dc4daada24ed1809605e9cbcfb3336b (diff)
downloadcoderay-b5b3430d4635682b767c44469e28a70fe234187e.tar.gz
fix spaces around operators (RuboCop)
Diffstat (limited to 'rake_tasks')
-rw-r--r--rake_tasks/code_statistics.rb2
1 files changed, 1 insertions, 1 deletions
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