28 lines
646 B
Bash
28 lines
646 B
Bash
# Copyright 1999-2023 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_RECIPE_TEST="rspec3"
|
|
RUBY_FAKEGEM_TASK_DOC="doc"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Some wrappers around and helpers for XML manipulation using Nokogiri"
|
|
HOMEPAGE="https://github.com/benlangfeld/Niceogiri"
|
|
LICENSE="MIT"
|
|
|
|
KEYWORDS="~amd64"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
ruby_add_rdepend "dev-ruby/nokogiri"
|
|
|
|
ruby_add_bdepend "doc? ( dev-ruby/yard )"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/guard-rspec/d' ${PN}.gemspec || die
|
|
sed -i -e '/[Bb]undler/d' Rakefile || die
|
|
}
|