diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-05-26 22:51:26 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-05-26 22:51:26 -0500 |
commit | 4df16f3f3d2e2f806532ef2f698ae29f26df44db (patch) | |
tree | ce044141a179a3f7f1dac6c9cf8b42f9903f6b20 | |
parent | 55c05276c71548f158cb9ae28fe2a154de9f8349 (diff) | |
download | rails-4df16f3f3d2e2f806532ef2f698ae29f26df44db.tar.gz rails-4df16f3f3d2e2f806532ef2f698ae29f26df44db.tar.bz2 rails-4df16f3f3d2e2f806532ef2f698ae29f26df44db.zip |
remove unnecessary ruby 1.8 reference from active_record/core [ci skip]
-rw-r--r-- | activerecord/lib/active_record/core.rb | 7 |
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 ## |