aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2012-08-28 20:13:36 +0530
committerArun Agrawal <arunagw@gmail.com>2012-08-28 20:13:36 +0530
commit72bcd9edf89dbed582ff5806b611cb8485d3b624 (patch)
tree842039d996178555fb4b0f3637feebc445327f08 /actionpack
parente4b33b08d6d2b88b627b1e52c4f349e57c5b89fc (diff)
downloadrails-72bcd9edf89dbed582ff5806b611cb8485d3b624.tar.gz
rails-72bcd9edf89dbed582ff5806b611cb8485d3b624.tar.bz2
rails-72bcd9edf89dbed582ff5806b611cb8485d3b624.zip
removed : warning: `*' interpreted as argument prefix
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/routing/url_for.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/url_for.rb b/actionpack/lib/action_dispatch/routing/url_for.rb
index 5177944575..d4cd537048 100644
--- a/actionpack/lib/action_dispatch/routing/url_for.rb
+++ b/actionpack/lib/action_dispatch/routing/url_for.rb
@@ -96,7 +96,7 @@ module ActionDispatch
self.default_url_options = {}
end
- include *_url_for_modules if respond_to?(:_url_for_modules)
+ include(*_url_for_modules) if respond_to?(:_url_for_modules)
end
def initialize(*)