Skip to content
Snippets Groups Projects
Unverified Commit f1e9f8c4 authored by Markus Reiter's avatar Markus Reiter Committed by GitHub
Browse files

Merge pull request #11063 from reitermarkus/url-do-version

Don't forward options if none are given.
parents 050ff991 c8997a0d
No related branches found
No related tags found
No related merge requests found
......@@ -128,9 +128,9 @@ class URL < Delegator
private :url
# @api public
def method_missing(method, *args, **options, &block)
def method_missing(method, *args, &block)
if @dsl.respond_to?(method)
T.unsafe(@dsl).public_send(method, *args, **options, &block)
T.unsafe(@dsl).public_send(method, *args, &block)
else
super
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment