diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-06-20 07:50:02 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-06-20 08:03:18 +0200 |
commit | 158cabca590503ee879cfcc246101d108ea97a5b (patch) | |
tree | a4245110c6f8f05f57ace436f812b00e9ac8ef10 /dev-ruby/instance_storage | |
parent | dev-ruby/ox: amd64 stable (diff) | |
download | gentoo-158cabca590503ee879cfcc246101d108ea97a5b.tar.gz gentoo-158cabca590503ee879cfcc246101d108ea97a5b.tar.bz2 gentoo-158cabca590503ee879cfcc246101d108ea97a5b.zip |
dev-ruby/instance_storage: add ruby30
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/instance_storage')
-rw-r--r-- | dev-ruby/instance_storage/instance_storage-1.0.0-r1.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-ruby/instance_storage/instance_storage-1.0.0-r1.ebuild b/dev-ruby/instance_storage/instance_storage-1.0.0-r1.ebuild new file mode 100644 index 000000000000..e9930274df9b --- /dev/null +++ b/dev-ruby/instance_storage/instance_storage-1.0.0-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem +DESCRIPTION="Manage class instances with dictionary" +HOMEPAGE="https://rubygems.org/gems/instance_storage/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile test/instance_storage_test.rb || die +} |