blob: 79df87529dfd1bf92293af622ad27564db241343 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby30 ruby31 ruby32"
RUBY_FAKEGEM_EXTRADOC="README.md"
RUBY_FAKEGEM_EXTRAINSTALL="misc"
RUBY_FAKEGEM_GEMSPEC="premailer.gemspec"
inherit ruby-fakegem
DESCRIPTION="Improve the rendering of HTML emails"
HOMEPAGE="https://github.com/premailer/premailer"
SRC_URI="https://github.com/premailer/premailer/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64"
SLOT="$(ver_cut 1)"
IUSE="test"
ruby_add_rdepend "
dev-ruby/addressable
>=dev-ruby/css_parser-1.12.0
>=dev-ruby/htmlentities-4.0.0
dev-ruby/nokogiri
"
ruby_add_bdepend "
test? ( dev-ruby/maxitest dev-ruby/webmock )
"
all_ruby_prepare() {
sed -i -e '/bundler/ s:^:#:' test/helper.rb || die
}
each_ruby_test() {
${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
}
|