diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2016-12-26 00:21:26 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2016-12-26 00:21:26 +0100 |
commit | 9590d2bd27f5a05e2255a7d52aa6bc65d747c3bc (patch) | |
tree | 0c8739cd7e252707cc2bf71041b7d23f9e7ba5e5 /dev-ruby/ammeter | |
parent | dev-ruby/rspec-rails: Add ruby23 (diff) | |
download | gentoo-9590d2bd27f5a05e2255a7d52aa6bc65d747c3bc.tar.gz gentoo-9590d2bd27f5a05e2255a7d52aa6bc65d747c3bc.tar.bz2 gentoo-9590d2bd27f5a05e2255a7d52aa6bc65d747c3bc.zip |
dev-ruby/ammeter: Add ruby23
Package-Manager: portage-2.3.3
Diffstat (limited to 'dev-ruby/ammeter')
-rw-r--r-- | dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild b/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild new file mode 100644 index 000000000000..9d3043d7fdb3 --- /dev/null +++ b/dev-ruby/ammeter/ammeter-1.1.4-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +USE_RUBY="ruby21 ruby22 ruby23" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Write specs for your Rails 3+ generators" +HOMEPAGE="https://github.com/alexrothenberg/ammeter" +LICENSE="MIT" + +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +# Restrict tests since they now require the specific rspec version to be +# provided in an environment variable. +#RESTRICT="test" + +ruby_add_rdepend " + >=dev-ruby/activesupport-3.0:* + >=dev-ruby/railties-3.0:* + >=dev-ruby/rspec-rails-2.2:* +" + +ruby_add_bdepend " + test? ( + >=dev-ruby/rails-4.0 + >=dev-ruby/uglifier-1.3 + >=dev-ruby/rake-0.10 + >=dev-ruby/coffee-rails-4.0 + >=dev-ruby/sass-rails-4.0 + >=dev-ruby/jquery-rails-3.0 + dev-util/cucumber + dev-util/aruba + dev-ruby/sqlite3 + dev-ruby/bundler + )" + +all_ruby_prepare() { + # fix the gemspec; we remove the version dependencies from there, as + # it requires _older_ versions of its dependencies.. it doesn't + # really seem to be the case though. Also remove the references to + # git ls-files to avoid calling it. + sed -i \ + -e '/git ls-files/d' \ + -e '/\(cucumber\|aruba\)/s:,.*$::' \ + ${RUBY_FAKEGEM_GEMSPEC} || die + + # haml-rails is not packaged + sed -i -e '/haml-rails/d' ${RUBY_FAKEGEM_GEMSPEC} Gemfile || die + rm -f spec/ammeter/rspec/generator/matchers/have_correct_syntax_spec.rb || die +} + +each_ruby_test() { + ${RUBY} -S bundle exec ${RUBY} -S rspec-3 spec || die +} |