From 06b0d6e5cdcfab8d49bcf559008f1753f3e7853c Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Mon, 28 Jun 2010 00:30:36 -0300 Subject: [PATCH] Add missing require, Base use deprecate method --- activerecord/lib/active_record/base.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index a4a5faad77..fa239bafc6 100644 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -15,6 +15,7 @@ require 'active_support/core_ext/hash/slice' require 'active_support/core_ext/string/behavior' require 'active_support/core_ext/kernel/singleton_class' require 'active_support/core_ext/module/delegation' +require 'active_support/core_ext/module/deprecation' require 'active_support/core_ext/module/introspection' require 'active_support/core_ext/object/duplicable' require 'active_support/core_ext/object/blank'