diff options
Diffstat (limited to 'dev-ruby/thor/thor-0.14.0.ebuild')
-rw-r--r-- | dev-ruby/thor/thor-0.14.0.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-ruby/thor/thor-0.14.0.ebuild b/dev-ruby/thor/thor-0.14.0.ebuild new file mode 100644 index 000000000000..5916d1d95a69 --- /dev/null +++ b/dev-ruby/thor/thor-0.14.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/thor/thor-0.14.0.ebuild,v 1.1 2010/08/31 20:14:24 a3li Exp $ + +EAPI=2 +USE_RUBY="ruby18 ree18 ruby19" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_TASK_TEST="" +RUBY_FAKEGEM_DOCDIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.md" +RUBY_FAKEGEM_BINWRAP="thor" + +inherit ruby-fakegem + +DESCRIPTION="A scripting framework that replaces rake and sake" +HOMEPAGE="http://github.com/wycats/thor" + +SRC_URI="http://github.com/wycats/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz" +S="${WORKDIR}/wycats-${PN}-4647c98" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +ruby_add_bdepend " + test? ( dev-ruby/fakeweb ) + doc? ( dev-ruby/rdoc )" + +all_ruby_prepare() { + einfo $(pwd) + # Having VERSION in the docs makes the rdoc generation fail. + sed -i -e '/EXTRA_RDOC_FILES/s/"VERSION", //' Thorfile || die +} + +all_ruby_compile() { + einfo $(pwd) + use doc && ruby -Ilib bin/thor rdoc || die "RDoc generation failed" +} + +each_ruby_test() { + ${RUBY} -Ilib/ bin/thor spec || die "Tests for ${RUBY} failed" +} |