From 0e03f2d1fd524b419998feba0615a2143422d0c5 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Thu, 22 Jan 2026 16:51:11 -0500 Subject: [PATCH] Tidy test deps - depend on Amolith's fork of Rantly. Fix has moved into upstream but requires jump to Ruby 3.3; should do eventually, but 3.3 isn't even packaged in our Guix commit. - pin to same Rubocop version as sgx-jmp. - pry-byebug --- Gemfile | 7 ++++++- test/test_helper.rb | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 14811ff6e0852d1c446a1ae248253cc7fb764986..814671104927510d8f84654e4df7f5e9a32b64b2 100644 --- a/Gemfile +++ b/Gemfile @@ -28,13 +28,18 @@ group(:development) do gem "pry-reload" gem "pry-rescue" gem "pry-stack_explorer" + gem "pry-byebug" end group(:test) do gem 'minitest' gem 'rack-test' gem 'rake' - gem 'rubocop' + gem "rantly", git: "https://github.com/Amolith/rantly.git", branch: "master" + # Pin to same version as sgx-jmp. Different versions + # are incompatible for identical `.rubocop.yml` + # and source code. + gem 'rubocop', '= 0.89.1' gem 'simplecov', require: false gem 'webmock' end diff --git a/test/test_helper.rb b/test/test_helper.rb index 78191373b3cc4322d5707cfdfdedcf60e90ea1ba..fabafe4e331883c548591a19a9c7b1e50cdb5991 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -12,6 +12,7 @@ require "webmock/minitest" begin require "pry-rescue/minitest" require "pry-reload" + require "pry-byebug" module Minitest class Test