debride version 1.15.0 has been released!
* home: <https://github.com/seattlerb/debride>
* rdoc: <http://docs.seattlerb.org/debride>
Analyze code for potentially uncalled / dead methods, now with auto-removal.
Changes:
### 1.15.0 / 2026-01-02
* 1 minor enhancement:
* Added process_hash to handle hash shortcut syntax in case it is a call. (TSMMark)
* 6 bug fixes:
* Bump prism dependency to 1.7+.
* Load debride with require_relative in bin/debride.
* Minor fixes for prism 1.7 and ruby 4.0.
* Oops! Fixed --legacy option definition.
* Properly handle scope/alias_method with interoplation. (alagos)
* Removed prism patches now that they've been upstreamed.
hoe-seattlerb version 1.3.6 has been released!
* home: <https://github.com/seattlerb/hoe-seattlerb>
* rdoc: <http://seattlerb.rubyforge.org/hoe-seattlerb>
Hoe plugins providing tasks used by seattle.rb including minitest,
perforce, and email providing full front-to-back release/announce
automation.
Changes:
### 1.3.6 / 2026-01-02
TEN YEARS‽‽
* 1 bug fix:
* Remove rake dependency between post_blog and send_email.
minitest-focus version 1.4.1 has been released!
* home: <https://github.com/seattlerb/minitest-focus>
* rdoc: <http://docs.seattlerb.org/minitest-focus>
Allows you to focus on a few tests with ease without having to use
command-line arguments. Good for tools like guard that don't have
enough brains to understand test output. Cf. minitest-autotest (an
example of a test runner with strong testing logic).
Inspired by https://github.com/seattlerb/minitest/issues/213
Changes:
### 1.4.1 / 2025-12-31
* 4 bug fixes:
* MT6: Load focus plugin if minitest/focus is required. (mattbrictson)
* Loosened the minitest dependency to include MT6.
* Dropped MT4.
* MT6: Minor option processing fixes.