Charles Oliver Nutter
Charles Oliver Nutter
## Description I have been working to switch JRuby to reline+irb gems and things are close but I have seen two issues testing it today. 1. Backspace does not work....
This modifies the getter definition to use a single method that uses `__callee__` to access the hash. ```ruby def __get_callee__! @table[__callee__] end ``` On versions of Ruby 2.0+ and JRuby...
The "shebang" mode for the parser generator does not work properly on some configurations of JRuby due to the `jruby` command being a bash script. This leads to the following...
JRuby has its own logic for pathname, with a mix of Ruby and Java extension code. We would like to use the gem, so we will need to merge in...
The bigdecimal gem only contains the C extension version of that library, which means it cannot install on JRuby. It should be removed until we can get the JRuby bigdecimal...
I have been seeing a failure on and off when running concurrent-ruby's specs against JRuby head. I believe this failure in the cylic barrier specs may have a bug: ```...
I will handle the PR, but there are a few changes in JRuby's copy of resolv.rb that should be safe to import. * Platform checks should use RbConfig, not RUBY_PLATFORM...
This may or may not be serious, depending on how thread-safe you consider RSpec itself to be, but it did lead to some red herring bugs in JRuby and Rubinius...
JRuby has an impl of zlib based on a Java port of libzlib called "jzlib". We need to incorporate our version into this gem in some way (in descending order...
The code here handles jruby/jruby#7864 by checking for both escaped and unescaped output. https://github.com/jruby/jruby-maven-plugins/blob/90c2f80e3f024743894ab9ee949a082306760a2f/ruby-tools/src/test/java/de/saumya/mojo/ruby/script/AbstractLauncherTest.java#L64-L68 That issue will be fixed in JRuby 9.4.4.0, so once we upgrade jruby-maven-plugins we can remove...