/Users/bw68/.rvm/rubies/ruby-3.3.0/lib/ruby/3.3.0/bundled_gems.rb:74:in `require': cannot load such file -- racc/parser.rb (LoadError)
from /Users/bw68/.rvm/rubies/ruby-3.3.0/lib/ruby/3.3.0/bundled_gems.rb:74:in `block (2 levels) in replace_require'
from /Users/bw68/.rvm/gems/ruby-3.3.0/gems/bibtex-ruby-6.0.0/lib/bibtex/name_parser.rb:7:in `<top (required)>'
from /Users/bw68/.rvm/rubies/ruby-3.3.0/lib/ruby/3.3.0/bundled_gems.rb:74:in `require'
For another user who had the same problem see here.
The problem seems to be that there is no racc dependency specified in the bibtex-ruby Gemfile (except in development mode). Manually adding racc to your own project Gemfile works, but I guess this should happen within bibtex-ruby itself?
Upgrading to Ruby 3.3.0 produces an error:
For another user who had the same problem see here.
The problem seems to be that there is no
racc
dependency specified in thebibtex-ruby
Gemfile (except in development mode). Manually addingracc
to your own project Gemfile works, but I guess this should happen withinbibtex-ruby
itself?