2015-04-14 17:28:31 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-05-04 19:59:26 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-04-14 17:28:31 +03:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httparty/httparty-0.13.1.ebuild,v 1.5 2015/04/13 18:30:55 graaff Exp $
|
2014-05-04 19:59:26 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
# jruby → testsuite fails (seems like a testuite bug)
|
2015-04-14 17:28:31 +03:00
|
|
|
USE_RUBY="ruby19 ruby20"
|
2014-05-04 19:59:26 +04:00
|
|
|
|
|
|
|
# We have a custom test function, but don't null this out so that the
|
|
|
|
# deps are still added
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="none"
|
|
|
|
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="README.md History"
|
|
|
|
|
|
|
|
inherit ruby-fakegem
|
|
|
|
|
2014-08-06 16:54:19 +04:00
|
|
|
DESCRIPTION="Makes http fun! Also, makes consuming restful web services dead easy"
|
2014-05-04 19:59:26 +04:00
|
|
|
HOMEPAGE="http://httparty.rubyforge.org/"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
ruby_add_rdepend '=dev-ruby/multi_json-1* >=dev-ruby/multi_xml-0.5.2'
|
|
|
|
|
|
|
|
ruby_add_bdepend 'dev-ruby/rspec:0 dev-ruby/fakeweb'
|
|
|
|
|
|
|
|
all_ruby_prepare() {
|
|
|
|
# Remove bundler
|
|
|
|
rm Gemfile || die
|
|
|
|
sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die
|
|
|
|
|
|
|
|
# sed -i -e '/git ls-files/ s:^:#:' ${PN}.gemspec || die
|
|
|
|
}
|
|
|
|
|
|
|
|
each_ruby_test() {
|
|
|
|
${RUBY} -S rake spec || die
|
|
|
|
}
|
|
|
|
|
|
|
|
all_ruby_install() {
|
|
|
|
all_fakegem_install
|
|
|
|
|
|
|
|
docinto examples
|
|
|
|
dodoc examples/*
|
|
|
|
}
|