diff options
author | Nathan Broadbent <nathan.f77@gmail.com> | 2012-01-30 00:54:17 +0800 |
---|---|---|
committer | Nathan Broadbent <nathan.f77@gmail.com> | 2012-01-30 03:15:49 +0800 |
commit | b31eac56097a0bfc5f5af70de91ad261067a395f (patch) | |
tree | 940fc90f5132122e70e49cb670776f32af41bde9 /activerecord/Rakefile | |
parent | ec4440fd4e886bc491726070b9fc44938f8798ee (diff) | |
download | rails-b31eac56097a0bfc5f5af70de91ad261067a395f.tar.gz rails-b31eac56097a0bfc5f5af70de91ad261067a395f.tar.bz2 rails-b31eac56097a0bfc5f5af70de91ad261067a395f.zip |
Replaced all 'for' loops with Enumerable#each
Diffstat (limited to 'activerecord/Rakefile')
-rwxr-xr-x | activerecord/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile index d769a73dba..e7d74b4f3e 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -187,7 +187,7 @@ end task :lines do lines, codelines, total_lines, total_codelines = 0, 0, 0, 0 - for file_name in FileList["lib/active_record/**/*.rb"] + FileList["lib/active_record/**/*.rb"].each do |file_name| next if file_name =~ /vendor/ f = File.open(file_name) |