dev-ruby/rspec-expectations: add ruby24
authorHans de Graaff <graaff@gentoo.org>
Sat, 14 Jan 2017 08:50:51 +0000 (09:50 +0100)
committerHans de Graaff <graaff@gentoo.org>
Sat, 14 Jan 2017 08:52:46 +0000 (09:52 +0100)
Package-Manager: portage-2.3.0

dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild

index 809122519c09ab99d44b9d0d9aa4028302b0a2ad..660cade24518880d05c4862c5784716658425042 100644 (file)
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 
@@ -50,3 +50,11 @@ all_ruby_prepare() {
        # Avoid a weird, and failing, test testing already installed code.
        sed -e '/has an up-to-date caller_filter file/,/end/ s:^:#:' -i spec/rspec/expectations_spec.rb || die
 }
+
+each_ruby_prepare() {
+       case ${RUBY} in
+               *ruby24)
+                       sed -i -e 's/of Fixnum/of Integer/' spec/rspec/expectations/expectation_target_spec.rb spec/rspec/matchers/be_instance_of_spec.rb || die
+                       ;;
+       esac
+}