dev-ruby/path_expander: initial import of 1.0.1

Package-Manager: portage-2.3.0
This commit is contained in:
Hans de Graaff
2017-01-17 08:11:00 +01:00
parent d0eff54cfc
commit a321d08663
3 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST path_expander-1.0.1.gem 12800 SHA256 a940510b051d0811a7b1cef8284114256423bff876fe22a8e9d5e40596b37442 SHA512 a87fb90ca9af0a28c51339761dd0b66926d1288009cb5cae32793587a59cf8a81cc8cacf8561ea49d1d77ddec49385892d0c3bf70cfa7da29390c4d32f9a29b2 WHIRLPOOL 9e3bc78af7098d9839dd7b7086a727677b0e328d19528ee1878226ca981ae6d5cf9290853533a3daf3357d68ac99c80f6eeef011c69a900c53945bff667abe23

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>ruby@gentoo.org</email>
<name>Gentoo Ruby Project</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,23 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
USE_RUBY="ruby21 ruby22 ruby23 ruby24"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"
inherit ruby-fakegem
DESCRIPTION="Helps pre-process command-line arguments expanding directories into their constituent files."
HOMEPAGE="https://github.com/seattlerb/path_expander"
LICENSE="MIT"
KEYWORDS="~amd64"
SLOT="1"
IUSE=""
each_ruby_test() {
${RUBY} -Ilib:.:test -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
}