Remove warning: `*' interpreted as argument prefix

This commit is contained in:
Arun Agrawal 2012-08-05 18:11:36 +05:30
parent c5807728d5
commit 88f80813cf
1 changed files with 1 additions and 1 deletions

View File

@ -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