2015-02-02 10:52:06 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-06-03 10:58:39 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2014-06-03 10:58:39 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2015-02-02 10:52:06 +03:00
|
|
|
USE_RUBY="ruby19 ruby20 ruby21 ruby22"
|
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"
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|