34 lines
967 B
Bash
34 lines
967 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rspec-rails/rspec-rails-2.12.2.ebuild,v 1.3 2014/04/05 12:13:44 mrueg Exp $
|
|
|
|
EAPI=5
|
|
|
|
USE_RUBY="ruby19"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
|
|
|
|
inherit ruby-fakegem versionator
|
|
|
|
DESCRIPTION="RSpec's official Ruby on Rails plugin"
|
|
HOMEPAGE="http://rspec.info/"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
SUBVERSION="$(get_version_component_range 1-2)"
|
|
|
|
ruby_add_rdepend "=dev-ruby/activesupport-3*
|
|
=dev-ruby/actionpack-3*
|
|
=dev-ruby/railties-3*
|
|
=dev-ruby/rspec-${SUBVERSION}*"
|
|
|
|
# Depend on the package being already installed for tests, because
|
|
# requiring ammeter will load it, and we need a consistent set of rspec
|
|
# and rspec-rails for that to work.
|
|
ruby_add_bdepend "test? ( >=dev-ruby/ammeter-0.2.5 ~dev-ruby/rspec-rails-${PV} )"
|