I would like to execute the diff power only on specifics tests. Something like: ```rb require 'super_diff/rspec-rails' RSpec.configure do |config| config.around(:each, :diff) do |example| SuperDiff.inline! { example.run } end end ``` ```rb it 'works', :diff do expect({ done: true }).to eq({ done: false }) end ``` Is that possible? Thanks for the great gem!