diff options
author | Hans de Graaff <graaff@gentoo.org> | 2023-08-25 10:21:33 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2023-08-25 10:23:11 +0200 |
commit | b96a41f4003510a510a2a890fd0c944c62a08ef0 (patch) | |
tree | 077f5cb51ac04470efbfe22f59db8b6c74b79cec /dev-ruby/marcel | |
parent | dev-lang/python: Stabilize 3.8.18 x86, #912978 (diff) | |
download | gentoo-b96a41f4003510a510a2a890fd0c944c62a08ef0.tar.gz gentoo-b96a41f4003510a510a2a890fd0c944c62a08ef0.tar.bz2 gentoo-b96a41f4003510a510a2a890fd0c944c62a08ef0.zip |
dev-ruby/marcel: fix minitest deprecation
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/marcel')
-rw-r--r-- | dev-ruby/marcel/marcel-1.0.2.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-ruby/marcel/marcel-1.0.2.ebuild b/dev-ruby/marcel/marcel-1.0.2.ebuild index f6bada748471..5d9061cf0553 100644 --- a/dev-ruby/marcel/marcel-1.0.2.ebuild +++ b/dev-ruby/marcel/marcel-1.0.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31 ruby32" +USE_RUBY="ruby30 ruby31 ruby32" RUBY_FAKEGEM_EXTRADOC="README.md" @@ -29,4 +29,6 @@ all_ruby_prepare() { test/test_helper.rb || die sed -i -e '/bundler/ s:^:#:' Rakefile || die + + sed -i -e 's/MiniTest/Minitest/' test/test_helper.rb || die } |