2019-02-04 08:57:12 +03:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2014-06-03 10:58:39 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=5
|
2019-02-04 08:57:12 +03:00
|
|
|
USE_RUBY="ruby23 ruby24 ruby25 ruby26"
|
2014-06-03 10:58:39 +04:00
|
|
|
|
2018-02-28 12:33:57 +03:00
|
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
2014-06-03 10:58:39 +04:00
|
|
|
RUBY_FAKEGEM_EXTRADOC="README"
|
|
|
|
|
|
|
|
inherit ruby-fakegem
|
|
|
|
|
|
|
|
DESCRIPTION="Descriptive block syntax definition for Test::Unit"
|
|
|
|
HOMEPAGE="http://dust.rubyforge.org/"
|
|
|
|
LICENSE="MIT"
|
|
|
|
|
2016-04-12 12:00:53 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2014-06-03 10:58:39 +04:00
|
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
# Remove a long-obsolete rubygems method.
|
|
|
|
all_ruby_prepare() {
|
|
|
|
sed -i -e '/manage_gems/d' \
|
|
|
|
-e '/gempackagetask/d' \
|
|
|
|
-e '/GemPackageTask/,/end/d' \
|
|
|
|
-e 's:rake/rdoctask:rdoc/task:' rakefile.rb || die "Unable to update rakefile.rb"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
each_ruby_test() {
|
|
|
|
${RUBY} -I. test/all_tests.rb || die
|
|
|
|
}
|