1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Koz]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5369 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski 2006-10-27 01:26:11 +00:00
parent 464102d551
commit e808315725
3 changed files with 9 additions and 6 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Clean up the output of rake stats, de-emphasise components and apis, and remove the indents for tests [Koz]
* Added option to script/process/spawner of specifying the binding address #5133 [zsombor]
* Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]

View file

@ -83,7 +83,7 @@ class CodeStatistics #:nodoc:
loc_over_m = (statistics["codelines"] / statistics["methods"]) - 2 rescue loc_over_m = 0
start = if TEST_TYPES.include? name
"| #{name.ljust(18)} "
"| #{name.ljust(20)} "
else
"| #{name.ljust(20)} "
end

View file

@ -1,13 +1,14 @@
STATS_DIRECTORIES = [
%w(Controllers app/controllers),
%w(Helpers app/helpers),
%w(Controllers app/controllers),
%w(Models app/models),
%w(Libraries lib/),
%w(APIs app/apis),
%w(Components components),
%w(Integration\ tests test/integration),
%w(Functional\ tests test/functional),
%w(Models app/models),
%w(Unit\ tests test/unit),
%w(Libraries lib/),
%w(Integration\ tests test/integration)
%w(Unit\ tests test/unit)
].collect { |name, dir| [ name, "#{RAILS_ROOT}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
desc "Report code statistics (KLOCs, etc) from the application"