forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.2.28
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST spy-0.4.2.gem 32768 SHA256 6d53785192bf5628a566d6547eed2b78e58d791c9b897996306183c924fa96c3 SHA512 0c5dd93857c09b55b8e6f6fa8468deadcaf4bd0c5dbddcadb466eba1552996730a57e9e71eb91871dcdde64692b0fec2d683a1e88811cfada8495c5b03f78a8f WHIRLPOOL e27a35ed8192c16440b8f645133d917a542fc914c264f2c177a60ea0c0fd3b71a36060e65dd041d23b786397500c0b7d4f5ad36cb1992305923ed9733bde5f2b | ||
DIST spy-0.4.3.gem 32768 SHA256 24ada060ce2f66da4b9f68bdf90f94c1576f12dcb365f5730146db17cb8594fd SHA512 0c7a7e68f4e7907f7588bc2c3285903d40d7bcdaf3fbc5194d1e259b8ed53802f28ff66c5829b92debfb700f718aa1bb96cd94a561b2a143a41db0e9c3202469 WHIRLPOOL b9f0951e6204e05307beeb80e3c75f970d49dc29701b11808a5c9ecf9049442d95b1e88c9cfc1fdd30d3c28007a5df6728fbc4c709a2d719995c04b11ab02df2 | ||
DIST spy-0.4.5.gem 32768 SHA256 dd9c977a9106ec0385e85c294c537abb2bfab23155cf54066ffd11b2131a5567 SHA512 f006809cbe1118c3f629bff29dae141039d8ec098f6ce217907304d4ab159cdf1b357dc5008e84c44385bb48aea2c36a1b70c8db363d02403316792c7b4e211e WHIRLPOOL f12fc6282c2483b4c9c3e32dc91a58b2d6aac57ce8fc47346cf6a79b3964ed225a084383f50b0dcf337fe6834531c8c89dd9f1f9c79ccb39d7dee4fc234bdbac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
USE_RUBY="ruby20 ruby21 ruby22 ruby23" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="yard" | ||
RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md" | ||
|
||
inherit multilib ruby-fakegem | ||
|
||
DESCRIPTION="A simple opinionated mocking framework" | ||
HOMEPAGE="https://github.com/ryanong/spy" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
ruby_add_bdepend "test? ( dev-ruby/minitest:0 | ||
dev-ruby/pry )" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e "/bundler/d" -e "/pry-nav/d" -e "/[Cc]overalls/d" Rakefile test/test_helper.rb || die | ||
} |