diff options
Diffstat (limited to 'dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild')
-rw-r--r-- | dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild b/dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild index 809122519c09..660cade24518 100644 --- a/dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild +++ b/dev-ruby/rspec-expectations/rspec-expectations-2.99.2.ebuild @@ -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 +} |