28 lines
669 B
Bash
28 lines
669 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.8.ebuild,v 1.1 2012/01/14 08:28:15 graaff Exp $
|
|
|
|
EAPI=2
|
|
USE_RUBY="ruby18 ree18 jruby"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="none"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="file-tail.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.3"
|
|
|
|
each_ruby_test() {
|
|
${RUBY} -Ilib -S testrb tests/*_test.rb || die
|
|
}
|