You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/dust/dust-0.1.7-r2.ebuild

32 lines
694 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
USE_RUBY="ruby24 ruby25 ruby26 ruby27"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="README"
inherit ruby-fakegem
DESCRIPTION="Descriptive block syntax definition for Test::Unit"
HOMEPAGE="http://dust.rubyforge.org/"
LICENSE="MIT"
KEYWORDS="amd64 x86"
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
}