mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
1a91abe645
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3702 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
17 lines
625 B
Ruby
17 lines
625 B
Ruby
STATS_DIRECTORIES = [
|
|
%w(Helpers app/helpers),
|
|
%w(Controllers app/controllers),
|
|
%w(APIs app/apis),
|
|
%w(Components components),
|
|
%w(Functional\ tests test/functional),
|
|
%w(Models app/models),
|
|
%w(Unit\ tests test/unit),
|
|
%w(Libraries lib/),
|
|
%w(Integration\ tests test/integration)
|
|
].collect { |name, dir| [ name, "#{RAILS_ROOT}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
|
|
|
|
desc "Report code statistics (KLOCs, etc) from the application"
|
|
task :stats do
|
|
require 'code_statistics'
|
|
CodeStatistics.new(*STATS_DIRECTORIES).to_s
|
|
end
|