Diff did_you_mean-1.6.3 with a did_you_mean-2.0.0

/usr/portage/dev-ruby/did_you_mean/did_you_mean-2.0.0.ebuild 2025-07-29 16:22:13.700452721 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5
USE_RUBY="ruby31 ruby32 ruby33"
5
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
6 6

  
7
RUBY_FAKEGEM_RECIPE_DOC=""
8 7
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
9 8

  
10 9
inherit ruby-fakegem
11 10

  
12 11
DESCRIPTION="'did you mean?'experience in Ruby"
13
HOMEPAGE="https://github.com/yuki24/did_you_mean"
12
HOMEPAGE="https://github.com/ruby/did_you_mean"
14 13

  
15 14
LICENSE="MIT"
16
SLOT="2.6"
15
SLOT="$(ver_cut 1)"
17 16
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
18
IUSE=""
17
IUSE="test"
19 18

  
20
PATCHES=( "${FILESDIR}/${P}-ruby33.patch" )
21

  
22
ruby_add_bdepend "test? ( dev-ruby/minitest:5 dev-ruby/test-unit )"
19
ruby_add_bdepend "test? ( dev-ruby/minitest:5 dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
23 20

  
24 21
all_ruby_prepare() {
25 22
	sed -i -e '/bundler/ s:^:#:' Rakefile || die
Thank you!