aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-03-11 13:29:39 -0800
committerJosé Valim <jose.valim@gmail.com>2011-03-11 13:29:39 -0800
commit53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0 (patch)
tree0ed79c437f522e29ef71e471a4b87482514ddb5b /activesupport/lib/active_support
parent94031ef422357e5802c965a9e8365e5494e7cc2f (diff)
downloadrails-53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0.tar.gz
rails-53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0.tar.bz2
rails-53794cf7b5a9f66c3173f4ca9a5ee3279965a3a0.zip
Add missing require 'thread' to BufferedLogger.
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/buffered_logger.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/buffered_logger.rb b/activesupport/lib/active_support/buffered_logger.rb
index b861a6f62a..e41731f3e7 100644
--- a/activesupport/lib/active_support/buffered_logger.rb
+++ b/activesupport/lib/active_support/buffered_logger.rb
@@ -1,3 +1,4 @@
+require 'thread'
require 'active_support/core_ext/class/attribute_accessors'
module ActiveSupport