37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id: 4697dd03780ef2b8bf2d9e9875ac9313bd652eb7 $
|
|
|
|
EAPI=5
|
|
USE_RUBY="ruby20 ruby21 ruby22"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="A Behaviour Driven Development (BDD) framework for Ruby"
|
|
HOMEPAGE="https://github.com/rspec/rspec-support"
|
|
SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="3"
|
|
KEYWORDS="~amd64 ~arm ~hppa ~ppc64"
|
|
IUSE=""
|
|
|
|
ruby_add_bdepend "test? ( >=dev-ruby/rspec-3.4.0:3 )"
|
|
|
|
all_ruby_prepare() {
|
|
sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
|
|
|
|
# Remove spec that, by following symlinks, tries to scan pretty much
|
|
# the whole filesystem.
|
|
rm spec/rspec/support/caller_filter_spec.rb || die
|
|
|
|
# Avoid a spec requiring a specific locale
|
|
sed -i -e '/copes with encoded strings/ s/RSpec::Support::OS.windows?/true/' spec/rspec/support/differ_spec.rb || die
|
|
}
|