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/rr/rr-1.1.2-r1.ebuild

41 lines
1.1 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
USE_RUBY="ruby20 ruby21 ruby22 ruby23"
RUBY_FAKEGEM_TASK_TEST="none"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
inherit ruby-fakegem
DESCRIPTION="A double framework featuring a selection of double techniques and a terse syntax"
HOMEPAGE="http://pivotallabs.com/"
SRC_URI="https://github.com/rr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
ruby_add_bdepend "test? (
dev-ruby/rspec:2
dev-ruby/minitest
dev-ruby/session
dev-ruby/diff-lcs )"
all_ruby_prepare() {
rm Gemfile || die
sed -i -e '1,2 s:^:#:' spec/suites/rspec_2/spec_helper.rb || die
}
each_ruby_test() {
# Only run the rspec 2 case since we don't have appraisals. Setting
# up everything correctly without it seems very complicated.
ruby-ng_rspec --format progress spec/suites/rspec_2/unit || die
}