File: stats.rake

package info (click to toggle)
thin 1.2.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,252 kB
  • ctags: 531
  • sloc: ruby: 4,529; ansic: 725; sh: 21; makefile: 16
file content (28 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
desc 'Show some stats about the code'
task :stats do
  line_count = proc do |path|
    Dir[path].collect { |f| File.open(f).readlines.reject { |l| l =~ /(^\s*(\#|\/\*))|^\s*$/ }.size }.inject(0){ |sum,n| sum += n }
  end
  comment_count = proc do |path|
    Dir[path].collect { |f| File.open(f).readlines.select { |l| l =~ /^\s*\#/ }.size }.inject(0) { |sum,n| sum += n }
  end
  lib     = line_count['lib/**/*.rb']
  comment = comment_count['lib/**/*.rb']
  ext     = line_count['ext/**/*.{c,h}'] 
  spec    = line_count['spec/**/*.rb']
  
  comment_ratio = '%1.2f' % (comment.to_f / lib.to_f)
  spec_ratio = '%1.2f' % (spec.to_f / lib.to_f)
  
  puts '/======================\\'
  puts '| Part            LOC  |'
  puts '|======================|'
  puts "| lib             #{lib.to_s.ljust(5)}|"
  puts "| lib comments    #{comment.to_s.ljust(5)}|"
  puts "| ext             #{ext.to_s.ljust(5)}|"
  puts "| spec            #{spec.to_s.ljust(5)}|"
  puts '| ratios:              |'
  puts "|   lib/comment   #{comment_ratio.to_s.ljust(5)}|"
  puts "|   lib/spec      #{spec_ratio.to_s.ljust(5)}|"
  puts '\======================/'
end