diff options
author | Scott Barron <scott@elitists.net> | 2005-09-27 23:31:32 +0000 |
---|---|---|
committer | Scott Barron <scott@elitists.net> | 2005-09-27 23:31:32 +0000 |
commit | e1024e50cf72ade51b1b2231f1ba6649b4826b7d (patch) | |
tree | 5a80084bc3e543209fb489ed30871794926df7e3 | |
parent | 5217b90909ef2d48bb708161a7b2f34826e62cd4 (diff) | |
download | rails-e1024e50cf72ade51b1b2231f1ba6649b4826b7d.tar.gz rails-e1024e50cf72ade51b1b2231f1ba6649b4826b7d.tar.bz2 rails-e1024e50cf72ade51b1b2231f1ba6649b4826b7d.zip |
#2261 was supposed to have been closed as wontfix, not sure why it wasn't,
sorry. We discussed this on IRC and reached the conclusion that it was
an undesirable addition.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2377 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/CHANGELOG | 2 | ||||
-rw-r--r-- | railties/lib/code_statistics.rb | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 7487be5b62..35fb6dc425 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,7 +1,5 @@ *SVN* -* Include lib/tasks/*.rake in rake stats. #2261 [Thomas Fuchs <thomas@fesch.at>] - * Clearly label functional and unit tests in rake stats output. #2297 [lasse.koskela@gmail.com] * Make the migration generator only check files ending in *.rb when calculating the next file name #2317 [Chad Fowler] diff --git a/railties/lib/code_statistics.rb b/railties/lib/code_statistics.rb index 203a91f323..75334c4610 100644 --- a/railties/lib/code_statistics.rb +++ b/railties/lib/code_statistics.rb @@ -26,7 +26,7 @@ class CodeStatistics @pairs.inject({}) { |stats, pair| stats[pair.first] = calculate_directory_statistics(pair.last); stats } end - def calculate_directory_statistics(directory, pattern = /.*\.r(b|ake)$/) + def calculate_directory_statistics(directory, pattern = /.*\.rb$/) stats = { "lines" => 0, "codelines" => 0, "classes" => 0, "methods" => 0 } Dir.foreach(directory) do |file_name| |