From e0a2dab8166d67c556ab9abc13fb673d2eee1e20 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 13 Apr 2005 05:06:40 +0000 Subject: Added KLOC counter for AR and AP. Combined theyre at ~9KLOC git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1153 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/Rakefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'actionpack/Rakefile') diff --git a/actionpack/Rakefile b/actionpack/Rakefile index dbfaca4ded..aadcbe5eb2 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -80,6 +80,30 @@ Rake::GemPackageTask.new(spec) do |p| p.need_zip = true end +task :lines do + lines, codelines, total_lines, total_codelines = 0, 0, 0, 0 + + for file_name in FileList["lib/**/*.rb"] + next if file_name =~ /vendor/ + f = File.open(file_name) + + while line = f.gets + lines += 1 + next if line =~ /^\s*$/ + next if line =~ /^\s*#/ + codelines += 1 + end + puts "L: #{sprintf("%4d", lines)}, LOC #{sprintf("%4d", codelines)} | #{file_name}" + + total_lines += lines + total_codelines += codelines + + lines, codelines = 0, 0 + end + + puts "Total: Lines #{total_lines}, LOC #{total_codelines}" +end + # Publishing ------------------------------------------------------ -- cgit v1.2.3