Benoit Daloze

Results 1300 comments of Benoit Daloze

Currently TruffleRuby tests a small number of gems in its CI, i.e. in the gate/pre-merge CI (e.g. `ffi`, because a large part of that code is in the truffleruby repo)....

I got a fix for the kwargs-related failures: https://github.com/rspec/rspec-mocks/pull/1464

Right, I think adding a daily or weekly run would be helpful, once truffleruby passes all specs of one of the rspec gems (gem by gem is helpful for incremental...

I looked into the above, and that difference is expected. For: ```ruby begin exit 999 rescue SystemExit => e puts e.backtrace end ``` ``` $ ruby -v exit.rb ruby 3.0.3p157...

I think we should disable the usage of Ripper by RSpec for TruffleRuby, in practice it seems currently very slow (seconds of pause just before showing errors & backtraces) and...

I read that spec but it didn't help me much :sweat_smile: My understanding is it's used for slightly better formatting of errors/failures (not sure of the details).

It'd be great to get this over the line. TBH I feel it's a huge pain to work with so many git repos, issue trackers, separate projects for PRs, etc....

@andrykonchin and I noticed the same issue when updating to Ruby 3.2.4. There is a new executable `syntax_suggest` but it doesn't work: ``` $ chruby 3.2.2 Using ruby-3.2.2: ruby 3.2.2...

@schneems @hsbt Could you look at this? It's still broken in 3.3.5: ``` $ syntax_suggest --help /home/eregon/.rubies/ruby-3.3.5/lib/ruby/gems/3.3.0/gems/syntax_suggest-2.0.0/exe/syntax_suggest:3:in `require_relative': cannot load such file -- /home/eregon/.rubies/ruby-3.3.5/lib/ruby/gems/3.3.0/gems/syntax_suggest-2.0.0/lib/syntax_suggest/api (LoadError) from /home/eregon/.rubies/ruby-3.3.5/lib/ruby/gems/3.3.0/gems/syntax_suggest-2.0.0/exe/syntax_suggest:3:in `' from /home/eregon/.rubies/ruby-3.3.5/bin/syntax_suggest:25:in...

Probably it should be `require "syntax_suggest/api"` and not `require_relative` for an executable