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.
dev-ruby/bogus: initial import, dependency for dev-ruby/virtus
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
3 changed files
with
43 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST bogus-0.1.6.gem 56320 SHA256 a1aa6b5219a9ea010f8945874d8b09f58a4908676ffd4785c85475bec47817d8 SHA512 c65a8b8c6f19c6ef07c4330035e05abc47a63176ec1899e0d9cf611d5a195e0e2fe53b25110e0d2fe5e61c3d3325b79b71c7b42870cb4bfedb25d459f6f90e25 WHIRLPOOL 5dfdf5e79a5b9eea9b9f5e6c2cc4fb62f78f791ff3b3f8358b4df38b07326cc627a5934ee5026177fcbd615d5d4c8340735957e844fe7cf69b7290a897dc19b8 |
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,31 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
USE_RUBY="ruby21 ruby22 ruby23" | ||
|
||
RUBY_FAKEGEM_RECIPE_TEST="rspec3" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Decreases the need for integration tests by ensuring that the things you stub or mock actually exist." | ||
HOMEPAGE="https://github.com/psyho/bogus" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
ruby_add_rdepend ">=dev-ruby/dependor-0.0.4" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e '/simplecov/,/^end/ s:^:#:' \ | ||
-e '/SimpleCov/,/^end/ s:^:#:' spec/spec_helper.rb || die | ||
|
||
# Avoid dependency on unpackaged nulldb | ||
rm -f spec/bogus/fakes/fake_ar_attributes_spec.rb || die | ||
} |
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,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Ruby Project</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">psyho/bogus</remote-id> | ||
</upstream> | ||
</pkgmetadata> |