blob: 089cbd49d652339dba41c1a11ba6460a17546707 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
USE_RUBY="ruby24 ruby25 ruby26"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="README.md"
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
inherit ruby-fakegem eapi7-ver
DESCRIPTION="Integrate SassC-Ruby with Rails"
HOMEPAGE="https://github.com/sass/sassc-rails"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
KEYWORDS="~amd64"
IUSE=""
ruby_add_rdepend "
>=dev-ruby/sassc-2.0
dev-ruby/tilt:*
>=dev-ruby/railties-4:*
>=dev-ruby/sprockets-3.0:*
dev-ruby/sprockets-rails:*
"
ruby_add_bdepend "
test? ( dev-ruby/bundler dev-ruby/mocha )"
all_ruby_prepare() {
sed -e '/rake/ s/,.*$//' \
-e 's/git ls-files -z/find . -print0/' \
-i ${RUBY_FAKEGEM_GEMSPEC} || die
}
each_ruby_test() {
${RUBY} -S bundle exec rake test || die
}
|