Diff minitest-5.15.0-r1 with a minitest-5.17.0

/usr/portage/dev-ruby/minitest/minitest-5.17.0.ebuild 2023-10-09 14:52:30.444368374 +0300
13 13
HOMEPAGE="https://github.com/seattlerb/minitest"
14 14

  
15 15
LICENSE="MIT"
16
SLOT="5.15"
16
SLOT="5"
17 17
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
18 18
IUSE="doc test"
19 19

  
20
RDEPEND="!~dev-ruby/minitest-5.15.0:5"
20
all_ruby_prepare() {
21
	# Avoid a test dependency on dev-ruby/hoe, leading to circular dependencies
22
	rm -f test/minitest/test_minitest_test_task.rb || die
23
}
21 24

  
22 25
each_ruby_test() {
26
	export -n A
23 27
	MT_NO_PLUGINS=true ${RUBY} -Ilib:test:. -e "Dir['**/test_*.rb'].each{|f| require f}" || die "Tests failed"
24 28
}
Thank you!