We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
jruby -v : jruby 9.1.7.0 (2.3.1) 2017-01-11 68056ae OpenJDK 64-Bit Server VM 25.121-b13 on 1.8.0_121-8u121-b13-2-b13 +jit [linux-x86_64] uname -a : Linux computer 4.9.0-1-amd64 #1 SMP Debian 4.9.2-2 (2017-01-12) x86_64 GNU/Linux
jruby -v
uname -a
This works on MRI:
module A refine String do def foo; puts :foo; end end end module B refine String do def bar; puts :bar; end end end module C include A, B end using C "blah".foo "blah".bar
On jruby it doesn't take the refine :(
$ jruby test.rb NoMethodError: undefined method `foo' for "blah":String <main> at test.rb:19
As discussed in #4475
The text was updated successfully, but these errors were encountered:
Thank you! We shall endeavor to fix it :-)
Sorry, something went wrong.
JRuby output matches MRI 2.5.3 after #5604 and #5627.
Both PRs and additional fixes have been merged.
No branches or pull requests
Environment
jruby -v
: jruby 9.1.7.0 (2.3.1) 2017-01-11 68056ae OpenJDK 64-Bit Server VM 25.121-b13 on 1.8.0_121-8u121-b13-2-b13 +jit [linux-x86_64]uname -a
: Linux computer 4.9.0-1-amd64 #1 SMP Debian 4.9.2-2 (2017-01-12) x86_64 GNU/LinuxExpected Behavior
This works on MRI:
On jruby it doesn't take the refine :(
Actual Behavior
As discussed in #4475
The text was updated successfully, but these errors were encountered: