Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional support for Ruby 3 #408

Open
cdhagmann opened this issue Aug 18, 2021 · 0 comments
Open

Add additional support for Ruby 3 #408

cdhagmann opened this issue Aug 18, 2021 · 0 comments

Comments

@cdhagmann
Copy link

cdhagmann commented Aug 18, 2021

lhs/lib/lhs/data.rb

Lines 93 to 95 in 95c5d22

def method_missing(name, *args, &block)
_proxy.send(name, *args, &block)
end

Should read

  def method_missing(name, *args, **kwargs, &block)
    _proxy.send(name, *args, **kwargs, &block)
  end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant