You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ruby/html2haml/html2haml-2.2.0-r1.ebuild

36 lines
744 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby26 ruby27"
RUBY_FAKEGEM_EXTRADOC="README.md Changelog.markdown"
RUBY_FAKEGEM_RECIPE_DOC="yard"
inherit ruby-fakegem
DESCRIPTION="Convert HTML and HTML+Erb to Haml"
HOMEPAGE="https://github.com/haml/html2haml"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
ruby_add_rdepend ">=dev-ruby/nokogiri-1.6.0
>=dev-ruby/erubis-2.7.0
>=dev-ruby/ruby_parser-3.5
dev-ruby/haml:5"
ruby_add_bdepend "test? ( dev-ruby/minitest )"
all_ruby_prepare() {
sed -i -e "/bundler/d" test/test_helper.rb || die
}
each_ruby_test() {
${RUBY} -Ilib:test test/html2haml_test.rb || die
${RUBY} -Ilib:test test/erb_test.rb || die
}