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 --- activerecord/Rakefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'activerecord') diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 93c4bbbefb..b566d79cf7 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -101,6 +101,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/active_record/**/*.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