0.6.0
Features
-
You can now customize the colors that SuperDiff uses by adding this to your test setup:
SuperDiff.configure do |config| config.actual_color = :green config.expected_color = :red config.border_color = :yellow config.header_color = :yellow end
-
Ruby 3.0 is now supported. (#118)
Bug fixes
- Resolve compatibility issues with RSpec 3.10. (#114)
- Fix diffs involving
contain_exactly
anda_collection_containing_exactly
so that if there are extra items in the actual value,
they are shown with+
s. (#106)
Other notable changes
- Fix reliability issues with CI.
- Fix
rake spec
so that it works when run locally again.