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

Don't forward options if none are given.

parent 050ff991
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