Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rest-client/
Date: Wed, 09 May 2018 04:26:26
Message-Id: 1525839906.469167a226a0fdb423b6483c387dcae44db0d2fb.graaff@gentoo
1 commit: 469167a226a0fdb423b6483c387dcae44db0d2fb
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 9 04:25:06 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed May 9 04:25:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469167a2
7
8 dev-ruby/rest-client: avoid tests that require network access
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-ruby/rest-client/rest-client-2.0.2.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-ruby/rest-client/rest-client-2.0.2.ebuild b/dev-ruby/rest-client/rest-client-2.0.2.ebuild
16 index 4b8540bc007..89b52030617 100644
17 --- a/dev-ruby/rest-client/rest-client-2.0.2.ebuild
18 +++ b/dev-ruby/rest-client/rest-client-2.0.2.ebuild
19 @@ -31,6 +31,6 @@ all_ruby_prepare() {
20 sed -e '/bundler/I s:^:#:' \
21 -e '/namespace :windows/,/^end/ s:^:#:' -i Rakefile || die
22
23 - # Remove spec that requires network access.
24 - rm spec/integration/request_spec.rb || die
25 + # Remove specs that requires network access.
26 + rm spec/integration/{httpbin,request}_spec.rb || die
27 }