Apologies, I forgot to include the patch. I've attached it here.
Description: Use system rake instead of bundled rake This package is configured to use apt installed build dependencies, so the bundler can't find rake because it's installed system-wide. . This patch fixes that issue by using the system rake instead of a bundled one. Author: Max Gilmour <[email protected]> Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/ruby-scientist/+bug/2133826 Last-Update: 2025-12-03 --- --- a/script/test +++ b/script/test @@ -4,4 +4,4 @@ set -e cd $(dirname "$0")/.. - script/bootstrap && bundle exec rake test + script/bootstrap && rake test

