Benoit Daloze
Benoit Daloze
I would like a way to tell chruby to not set `$GEM_*` variables, as this is much safer (i.e., does not mix gems of different Ruby implementations) when e.g., developing...
Renaming the module from RubyVM::DebugInspector to DebugInspector (required for TruffleRuby support)
TruffleRuby implements the debug_inspector C API since a few releases. So it should be easy to get this gem working on TruffleRuby. However, there is one big issue, this gem...
Due to https://github.com/thoughtbot/factory_bot/blob/b223c275191985f776ff294825660fce98b3c0cc/lib/factory_bot/evaluator.rb#L10 methods like `singleton_method_added` (coming from BasicObject) are undefined. And then https://github.com/thoughtbot/factory_bot/blob/b223c275191985f776ff294825660fce98b3c0cc/lib/factory_bot/evaluator.rb#L81 will actually call `singleton_method_added`, and since the method is not there, will end up in `method_missing`:...
Hello, I've been looking at https://github.com/jlfwong/speedscope/wiki/Importing-from-custom-sources. I was wondering if it would be possible to choose the color in which a frame is represented. For instance the color could represent...
1. What command did you run? I ran `ruby-build rbx-5.0 ~/.rubies/rubinius-5.0` 2. What behavior did you expect? I expected it installs Rubinius sucessfully. 3. What behavior did you get instead?...
Since both [JRuby](https://github.com/jruby/jruby/issues/6878) and [TruffleRuby](https://github.com/oracle/truffleruby/issues/2453) are planning to work on Ruby 3.0 support soon, and we share the parser, I think it could be useful to coordinate. Could we write...
JRuby 9.2.0.0 canonicalizes paths in $" and __FILE__, making bundle exec fail when installed by RVM
Paths in `$"` and `__FILE__` are canonicalized in JRuby 9.2.0.0. They are not in MRI and in JRuby 9.1.16.0. We have the same bug in TruffleRuby (https://github.com/oracle/truffleruby/issues/1383). This also causes...
**Environment Information** Provide at least: * JRuby version (`jruby -v`) `jruby 9.2.17.0 (2.5.8) 2021-03-29 84d363da97 OpenJDK 64-Bit Server VM 11.0.10+9 on 11.0.10+9 +jit [linux-x86_64]` **Actual Behavior** ``` $ jruby -e...
Hello, I've been trying Solargraph on TruffleRuby, and completion works for regular Ruby methods. However, when trying to complete methods of a "foreign object" (e.g., a Java or JavaScript or...