aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-08-05 18:11:36 +0530
committerArun Agrawal <arunagw@gmail.com>2012-08-05 18:11:36 +0530
commit88f80813cf5fdf6a5a75f198ce2e95a8cb022b85 (patch)
treecff26a6a035477073c3119ea7cdb71ae53be1412 /activerecord/lib
parentc5807728d52c98b76e9badd95093471044b98d07 (diff)
downloadrails-88f80813cf5fdf6a5a75f198ce2e95a8cb022b85.tar.gz
rails-88f80813cf5fdf6a5a75f198ce2e95a8cb022b85.tar.bz2
rails-88f80813cf5fdf6a5a75f198ce2e95a8cb022b85.zip
Remove warning: `*' interpreted as argument prefix
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/model.rb2
1 files changed, 1 insertions, 1 deletions
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