# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 USE_RUBY="ruby19 jruby" RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc TODO" RUBY_FAKEGEM_DOCDIR="doc/html" inherit ruby-fakegem DESCRIPTION="Highline is a high-level command-line IO library for ruby" HOMEPAGE="http://highline.rubyforge.org/" IUSE="" LICENSE="|| ( GPL-2 Ruby )" SLOT="0" KEYWORDS="amd64 x86" all_ruby_prepare() { # fix up gemspec file not to call git sed -i -e '/git ls-files/d' highline.gemspec || die # Avoid tests that require a real console because we can't provide # that when running tests through portage. These should pass when # run in a console. We should probably narrow this down more to the # specific tests. sed -i -e '/tc_highline/ s:^:#:' test/ts_all.rb || die sed -i -e '/test_question_options/,/^ end/ s:^:#:' \ -e '/test_paged_print_infinite_loop_bug/,/^ end/ s:^:#:' \ -e '/test_cancel_paging/,/^ end/ s:^:#:' \ test/tc_menu.rb || die } each_ruby_test() { case ${RUBY} in *jruby) ewarn "Skipping tests since they hang indefinitely." ;; *) ${RUBY} -S rake test || die ;; esac }