blob: d5cc8c49ccf89a3cbfb02e212257d7db4707de12 (
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
43
44
45
46
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
USE_RUBY="ruby25 ruby26"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.markdown README.markdown"
RUBY_FAKEGEM_GEMSPEC="web-console.gemspec"
inherit ruby-fakegem
DESCRIPTION="A debugging tool for your Ruby on Rails applications"
HOMEPAGE="https://github.com/rails/web-console"
SRC_URI="https://github.com/rails/web-console/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="$(ver_cut 1)"
KEYWORDS="~amd64"
IUSE=""
ruby_add_rdepend "
>=dev-ruby/actionview-6.0:*
>=dev-ruby/activemodel-6.0:*
>=dev-ruby/bindex-0.4.0
>=dev-ruby/railties-6.0:*
"
ruby_add_bdepend "test? (
dev-ruby/bundler
>=dev-ruby/rails-6.0
dev-ruby/arel
dev-ruby/rack
dev-ruby/sqlite3
dev-ruby/mocha
www-servers/puma
)"
all_ruby_prepare() {
# Use an installed rails version rather than live source from github.
sed -i -e '/\(rack\|arel\|rails\|simplecov\)/ s/,/#/' \
-e '/\(byebug\|simplecov\)/ s:^:#:' Gemfile || die
sed -i -e '/simplecov/I s:^:#:' test/test_helper.rb || die
}
|