aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-26 22:51:26 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-26 22:51:26 -0500
commit4df16f3f3d2e2f806532ef2f698ae29f26df44db (patch)
treece044141a179a3f7f1dac6c9cf8b42f9903f6b20 /activerecord/lib/active_record
parent55c05276c71548f158cb9ae28fe2a154de9f8349 (diff)
downloadrails-4df16f3f3d2e2f806532ef2f698ae29f26df44db.tar.gz
rails-4df16f3f3d2e2f806532ef2f698ae29f26df44db.tar.bz2
rails-4df16f3f3d2e2f806532ef2f698ae29f26df44db.zip
remove unnecessary ruby 1.8 reference from active_record/core [ci skip]
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/core.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index f2833fbf3c..80c6f20b1a 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -10,9 +10,10 @@ module ActiveRecord
included do
##
# :singleton-method:
- # Accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class,
- # which is then passed on to any new database connections made and which can be retrieved on both
- # a class and instance level by calling +logger+.
+ #
+ # Accepts a logger conforming to the interface of Log4r which is then
+ # passed on to any new database connections made and which can be
+ # retrieved on both a class and instance level by calling +logger+.
config_attribute :logger, :global => true
##