33 lines
818 B
Bash
33 lines
818 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/file-tail/file-tail-1.0.11.ebuild,v 1.1 2012/08/21 16:51:34 flameeyes Exp $
|
|
|
|
EAPI=4
|
|
|
|
USE_RUBY="ruby18 ruby19 ree18 jruby"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="none"
|
|
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
RUBY_FAKEGEM_DOC_SOURCES="lib README.rdoc"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="README.rdoc"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="A small ruby library that allows it to 'tail' files in Ruby"
|
|
HOMEPAGE="http://flori.github.com/file-tail"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend ">=dev-ruby/tins-0.4.3"
|
|
ruby_add_bdepend "test? ( >=dev-ruby/test-unit-2.5.1-r1 )"
|
|
|
|
each_ruby_test() {
|
|
ruby-ng_testrb-2 -Ilib tests/*_test.rb
|
|
}
|