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

Include libs/ in rake stats #2223 [Marcel Molina]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2260 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-09-19 06:50:47 +00:00
parent 251a5d4508
commit 2eb29c231a

View file

@ -5,7 +5,8 @@ STATS_DIRECTORIES = [
%w(Components components),
%w(Functionals test/functional),
%w(Models app/models),
%w(Units test/unit)
%w(Units test/unit),
%w(Libraries lib/)
].collect { |name, dir| [ name, "#{RAILS_ROOT}/#{dir}" ] }.select { |name, dir| File.directory?(dir) }
desc "Report code statistics (KLOCs, etc) from the application"