blob: 89a61cffd95160656cbb47909849a031036a1cc4 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
USE_RUBY="ruby22 ruby23 ruby24 ruby25"
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_TASK_DOC="doc"
RUBY_FAKEGEM_EXTRADOC="ChangeLog.txt README.rdoc TODO.rdoc"
inherit ruby-fakegem eutils
DESCRIPTION="A very simple library to use URL shortening services such as TinyURL or RubyURL"
HOMEPAGE="https://github.com/robbyrussell/shorturl/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~x86-macos"
IUSE=""
# All tests require network connectivity.
RESTRICT="test"
each_ruby_test() {
${RUBY} -Ilib:test test/ts_all.rb || die "tests failed"
}
all_ruby_install() {
all_fakegem_install
if use doc; then
# If the doc build fails, the doc directory might not exist
pushd doc &>/dev/null || die "pushd doc failed"
dohtml -r .
popd &>/dev/null
fi
}
|