Benoit Daloze

Results 1300 comments of Benoit Daloze

> I have not yet heard of other people having this issue besides you or other truffleruby developers. For instance: * CRuby master contributors using `chruby` (and notably Shopify devs)....

> I do however plan on adding additional function hooks to allow configuring how `chruby` sets `GEM_HOME` or `GEM_PATH`. These changes would be incremental and could be released before 1.0.0....

> Can you say a bit more about what your use-case is My use-case is to use speedscope with GraalVM guest language profiling (i.e., for JS/Ruby/Python/LLVM/etc). So say a profile...

> One thing that could be tricky with this is that speedscope supports light & dark mode themes, and the foreground text color is different in each of them. How...

Looks good to me. I think almost nobody ever wants to scan files under: ```yaml Exclude: - 'node_modules/**/*' - 'tmp/**/*' - 'vendor/**/*' - '.git/**/*' ``` And it can still be...

This is one way to see changes: In JRuby: https://github.com/jruby/jruby/commits/master/core/src/main/java/org/jruby/parser/RubyParser.y In TruffleRuby: https://github.com/oracle/truffleruby/commits/master/src/main/java/org/truffleruby/parser/parser/RubyParser.y It looks JRuby has ported some or all of the pattern matching syntax? (pattern matching was introduced...

@enebo Great work, I didn't realize you already imported the Ruby 3 parser :) I've started importing the changes in TruffleRuby and unfortunately it's a huge amount of work because...

@enebo I'm not sure how much work it would be to adapt `jruby-parser` and if it'd gain much over the parser inside JRuby. I think the parser inside JRuby already...

Also fails in https://github.com/ruby/jruby-dev-builder/runs/7060585691?check_suite_focus=true It seems to mean `resolv.rb` does not work on JRuby Windows, and neither `net/http`. ``` $ ruby -ropen-uri -e 'puts URI.send(:open, %{[https://rubygems.org/})](https://rubygems.org/%7D)) { |f| f.read(1024) }'...

Thanks, that fixes it for setup-ruby on GitHub Actions.