31 lines
673 B
Bash
31 lines
673 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
USE_RUBY="ruby20 ruby21 ruby22 ruby23"
|
|
|
|
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
|
|
}
|