blob: 7789b30f2b1d1e125846ac70c7d4ca05f3f9a013 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.6.9-r1.ebuild,v 1.3 2014/04/18 08:54:03 graaff Exp $
EAPI=5
USE_RUBY="jruby ruby19 ruby20 ruby21"
RUBY_FAKEGEM_RECIPE_TEST="test"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="README.textile"
inherit ruby-fakegem
DESCRIPTION="Add Internationalization support to your Ruby application."
HOMEPAGE="http://rails-i18n.org/"
LICENSE="MIT"
SLOT="0.6"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
ruby_add_bdepend "test? ( dev-ruby/activesupport
dev-ruby/mocha:0.13
dev-ruby/test_declarative
dev-ruby/test-unit:2 )"
each_ruby_test() {
${RUBY} -w -Ilib -Itest test/all.rb || die
}
all_ruby_prepare() {
#Bundler isn't really necessary here, and it doesn't work with jruby
#Tests fail for jruby with >=mocha-0.13 unless we also include the
#test-unit gem.
sed -i -e "15s/require 'bundler\/setup'//"\
-e "/require 'mocha'/i gem 'mocha', '~>0.13.0'" \
-e "/require 'test\\/unit'/i gem 'test-unit'" test/test_helper.rb || die
}
|