From 88f80813cf5fdf6a5a75f198ce2e95a8cb022b85 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Sun, 5 Aug 2012 18:11:36 +0530 Subject: [PATCH] Remove warning: `*' interpreted as argument prefix --- activerecord/lib/active_record/model.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/model.rb b/activerecord/lib/active_record/model.rb index a326dabcd3..57553c29eb 100644 --- a/activerecord/lib/active_record/model.rb +++ b/activerecord/lib/active_record/model.rb @@ -141,7 +141,7 @@ module ActiveRecord "ActiveSupport::Concern + include, which will ensure that your class methods are " \ "inherited." ) - @base.extend *mods + @base.extend(*mods) end end end