mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-25 07:08:13 -07:00
32 lines
990 B
Bash
32 lines
990 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="'did you mean?'experience in Ruby"
|
|
HOMEPAGE="https://github.com/ruby/did_you_mean"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="$(ver_cut 1)"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
|
|
IUSE="test"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/minitest:5 dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/bundler/ s:^:#:' Rakefile || die
|
|
|
|
# Avoid a test that no longer works in ruby40 since ostruct changed status
|
|
sed -e '/test_load_error_from_require_has_suggestions/aomit "ostruct changed"' \
|
|
-i test/spell_checking/test_require_path_check.rb || die
|
|
|
|
# Avoid ractor tests that have not been updated for ruby40 yet.
|
|
rm -f test/test_ractor_compatibility.rb || die
|
|
}
|