blob: 7bd14c26c2c11d4a84c95b78b97647e6da0f9b52 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
inherit ruby-fakegem
DESCRIPTION="Provides a better error page for Rails and other Rack apps"
HOMEPAGE="https://github.com/BetterErrors/better_errors"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
KEYWORDS="~amd64"
IUSE="test"
# Uses various gemfiles
RESTRICT="test"
ruby_add_rdepend "
>=dev-ruby/erubi-1.0.0
>=dev-ruby/rack-0.9.0
dev-ruby/rouge:*
"
|