aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/statistics.rake
blob: 66b654725b531206db91ab576ade01864e347818 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
desc "Report code statistics (KLOCs, etc) from the application"
task :stats do
  require 'code_statistics'
  CodeStatistics.new(
    ["Helpers", "app/helpers"], 
    ["Controllers", "app/controllers"], 
    ["APIs", "app/apis"],
    ["Components", "components"],
    ["Functionals", "test/functional"],
    ["Models", "app/models"],
    ["Units", "test/unit"]
  ).to_s
end