diff --git a/Library/Homebrew/cask/url.rb b/Library/Homebrew/cask/url.rb index 3d39fbfb7a..d88e8dbc8c 100644 --- a/Library/Homebrew/cask/url.rb +++ b/Library/Homebrew/cask/url.rb @@ -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