blob: d69c496e232b5159b8afd3b82466b2ea4659c4d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bones/bones-3.6.5.ebuild,v 1.1 2011/02/11 08:36:11 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 jruby"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_TASK_DOC="doc:rdoc"
RUBY_FAKEGME_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"
RUBY_FAKEGEM_EXTRAINSTALL="default version.txt"
inherit ruby-fakegem
DESCRIPTION="Tool that creates new Ruby projects from a code skeleton"
HOMEPAGE="http://github.com/TwP/bones"
IUSE="test"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
ruby_add_rdepend "
>=dev-ruby/loquacious-1.7.0
>=dev-ruby/little-plugger-1.1.2-r1
>=dev-ruby/rake-0.8.7"
ruby_add_bdepend "
test? ( >=dev-ruby/rspec-1.3.0:0 )"
all_ruby_prepare() {
# Avoid double --format specdoc option which causes problems for rspec.
sed -i -e 's/--format specdoc//' Rakefile || die
}
each_ruby_test() {
${RUBY} -S spec spec || die "tests failed"
}
|