From 693e0df352e52dd5b3d1b191bbd018cd17023343 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 6 Mar 2005 23:39:12 +0000 Subject: [PATCH] Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@868 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 2 ++ railties/lib/code_statistics.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/railties/CHANGELOG b/railties/CHANGELOG index a2d14abf01..c4de06d414 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak] + * Added exception shallowing if the DRb server can't be started (not worth making a fuss about to distract new users) #779 [Tobias Luetke] * Added an empty favicon.ico file to the public directory of new applications (so the logs are not spammed by its absence) diff --git a/railties/lib/code_statistics.rb b/railties/lib/code_statistics.rb index efe8fc2454..ea3c1ad66d 100644 --- a/railties/lib/code_statistics.rb +++ b/railties/lib/code_statistics.rb @@ -23,7 +23,7 @@ def calculate_statistics @pairs.inject({}) { |stats, pair| stats[pair.first] = calculate_directory_statistics(pair.last); stats } end - def calculate_directory_statistics(directory, pattern = /.*rb/) + def calculate_directory_statistics(directory, pattern = /.*\.rb$/) stats = { "lines" => 0, "codelines" => 0, "classes" => 0, "methods" => 0 } Dir.foreach(directory) do |file_name| -- GitLab