diff options
author | 2011-08-23 05:23:22 +0000 | |
---|---|---|
committer | 2011-08-23 05:23:22 +0000 | |
commit | ac4d428bfa9099bbd178bc29b8c4bb37b7553d1f (patch) | |
tree | 2dd19517ae98f4704cb5319ed7b7a6134c82f9a1 /dev-ruby | |
parent | Version bump. (diff) | |
download | gentoo-2-ac4d428bfa9099bbd178bc29b8c4bb37b7553d1f.tar.gz gentoo-2-ac4d428bfa9099bbd178bc29b8c4bb37b7553d1f.tar.bz2 gentoo-2-ac4d428bfa9099bbd178bc29b8c4bb37b7553d1f.zip |
Initial import. Dependency of forthcoming faraday_middleware.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/rash/ChangeLog | 10 | ||||
-rw-r--r-- | dev-ruby/rash/metadata.xml | 5 | ||||
-rw-r--r-- | dev-ruby/rash/rash-0.3.0.ebuild | 28 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-ruby/rash/ChangeLog b/dev-ruby/rash/ChangeLog new file mode 100644 index 000000000000..2ab379a0d5c0 --- /dev/null +++ b/dev-ruby/rash/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-ruby/rash +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rash/ChangeLog,v 1.1 2011/08/23 05:23:22 graaff Exp $ + +*rash-0.3.0 (23 Aug 2011) + + 23 Aug 2011; Hans de Graaff <graaff@gentoo.org> +rash-0.3.0.ebuild, + +metadata.xml: + Initial import. Dependency of forthcoming faraday_middleware. + diff --git a/dev-ruby/rash/metadata.xml b/dev-ruby/rash/metadata.xml new file mode 100644 index 000000000000..852136183369 --- /dev/null +++ b/dev-ruby/rash/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>ruby</herd> +</pkgmetadata> diff --git a/dev-ruby/rash/rash-0.3.0.ebuild b/dev-ruby/rash/rash-0.3.0.ebuild new file mode 100644 index 000000000000..45a371a78d31 --- /dev/null +++ b/dev-ruby/rash/rash-0.3.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rash/rash-0.3.0.ebuild,v 1.1 2011/08/23 05:23:22 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ree18 jruby" + +RUBY_FAKEGEM_TASK_TEST="spec" + +RUBY_FAKEGEM_EXTRADOC="README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Rash is an extension to Hashie." +HOMEPAGE="https://github.com/tcocca/rash" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/hashie-1.0.0" +ruby_add_bdepend "test? ( >=dev-ruby/rspec-2.5.0:2 )" + +all_ruby_prepare() { + rm Gemfile || die + sed -i -e '/[Bb]undler/d' Rakefile || die +} |