From f4d100bb5a93a9370535cb79b1edca659542f9d1 Mon Sep 17 00:00:00 2001
From: Guillermo Iguaran <guilleiguaran@gmail.com>
Date: Mon, 23 May 2011 23:49:05 -0500
Subject: Prefer each instead of for on activesupport

---
 activesupport/lib/active_support/buffered_logger.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'activesupport/lib')

diff --git a/activesupport/lib/active_support/buffered_logger.rb b/activesupport/lib/active_support/buffered_logger.rb
index 2668087f57..26412cd7f4 100644
--- a/activesupport/lib/active_support/buffered_logger.rb
+++ b/activesupport/lib/active_support/buffered_logger.rb
@@ -77,7 +77,7 @@ module ActiveSupport
     # def info
     # def warn
     # def debug
-    for severity in Severity.constants
+    Severity.constants.each do |severity|
       class_eval <<-EOT, __FILE__, __LINE__ + 1
         def #{severity.downcase}(message = nil, progname = nil, &block) # def debug(message = nil, progname = nil, &block)
           add(#{severity}, message, progname, &block)                   #   add(DEBUG, message, progname, &block)
-- 
cgit v1.2.3