blob: 56c24feb0efc9ac10b130951c2eab39ba2fb8382 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/matchy/matchy-0.5.2.ebuild,v 1.7 2011/04/09 12:04:28 graaff Exp $
EAPI="2"
MY_OWNER="mcmire"
USE_RUBY="ruby18 ruby19 jruby ree18"
RUBY_FAKEGEM_DOCDIR=""
RUBY_FAKEGEM_EXTRADOC=""
RUBY_FAKEGEM_NAME="${MY_OWNER}-${PN}"
inherit ruby-fakegem
DESCRIPTION="RSpec-esque matchers for use in Test::Unit"
HOMEPAGE="http://github.com/mcmire/matchy"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE=""
# workaround for ruby 1.9.2, sent upstream after 0.5.2
each_ruby_test() {
RUBYLIB="$(pwd)${RUBYLIB+:${RUBYLIB}}" each_fakegem_test
}
|