Diff rantly-2.0.0-r1 with a rantly-3.0.0

/usr/portage/dev-ruby/rantly/rantly-3.0.0.ebuild 2026-01-08 10:18:06.009017862 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5
USE_RUBY="ruby30 ruby31 ruby32"
5

  
6
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
6 7

  
7 8
RUBY_FAKEGEM_EXTRADOC="README.md"
8 9

  
......
14 15
LICENSE="MIT"
15 16
SLOT="$(ver_cut 1)"
16 17
KEYWORDS="~amd64 ~riscv ~x86"
17
IUSE=""
18
IUSE="test"
19

  
20
ruby_add_bdepend "test? ( dev-ruby/minitest:5 )"
18 21

  
19 22
all_ruby_prepare() {
20
	sed -i -e '/simplecov/,/^end/ s:^:#:' test/test_helper.rb || die
23
	sed -e '/simplecov/,/^end/ s:^:#:' \
24
		-e '1igem "minitest", "~> 5.0"' \
25
		-i test/test_helper.rb || die
21 26
}
22 27

  
23 28
each_ruby_test() {
Thank you!