Hi, We had an automated update from 0.5.3 to 0.6.0 fail in CI with the following: ``` Failure/Error: require 'super_diff/rspec-rails' LoadError: cannot load such file -- rspec/version ``` RSpec and related is at the following versions: ``` rspec-core (3.10.1) rspec-expectations (3.10.1) rspec-its (1.3.0) rspec-mocks (3.10.2) rspec-rails (4.0.2) rspec-sorbet (1.8.0) rspec-support (3.10.2) ``` `require 'rspec/rails'` is earlier in our spec setup. Adding in a `pry` before the `require 'super_diff/rspec-rails'` and confirmed that trying to manually load `rspec/version` also fails. Any ideas? Cheers.