From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1132493-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 94709138334
	for <garchives@archives.gentoo.org>; Sun, 22 Dec 2019 09:05:14 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 0449EE09CE;
	Sun, 22 Dec 2019 09:05:13 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id ADCC6E09CE
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 Dec 2019 09:05:12 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 91BD034DA5F
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 Dec 2019 09:05:11 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D1A75D75
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 Dec 2019 09:05:09 +0000 (UTC)
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" <graaff@gentoo.org>
Message-ID: <1577005503.4e5c237fd3657d0e482c3a181310014f36c81054.graaff@gentoo>
Subject: [gentoo-commits] proj/ruby-scripts:master commit in: eselect-ruby/
X-VCS-Repository: proj/ruby-scripts
X-VCS-Files: eselect-ruby/ruby.eselect
X-VCS-Directories: eselect-ruby/
X-VCS-Committer: graaff
X-VCS-Committer-Name: Hans de Graaff
X-VCS-Revision: 4e5c237fd3657d0e482c3a181310014f36c81054
X-VCS-Branch: master
Date: Sun, 22 Dec 2019 09:05:09 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 1b4b3c3f-3665-4368-88b7-34ba76d0407b
X-Archives-Hash: 979f9a77c583f0280c1b5c0fe3366a93

commit:     4e5c237fd3657d0e482c3a181310014f36c81054
Author:     Hans de Graaff <hans <AT> degraaff <DOT> org>
AuthorDate: Sun Dec 22 09:04:30 2019 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 09:05:03 2019 +0000
URL:        https://gitweb.gentoo.org/proj/ruby-scripts.git/commit/?id=4e5c237f

Support ruby 2.7

Signed-off-by: Hans de Graaff <hans <AT> degraaff.org>

 eselect-ruby/ruby.eselect | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eselect-ruby/ruby.eselect b/eselect-ruby/ruby.eselect
index aa30fb0..843be75 100644
--- a/eselect-ruby/ruby.eselect
+++ b/eselect-ruby/ruby.eselect
@@ -4,14 +4,14 @@
 
 DESCRIPTION="Manage Ruby symlinks"
 MAINTAINER="ruby@gentoo.org"
-VERSION="20182225"
+VERSION="20192222"
 
 bindir=/usr/bin
 libdir=/usr/lib
 man1dir=/usr/share/man/man1
 
 find_targets() {
-	for t in ${EROOT}${bindir}/${1:-ruby}{18,19,20,21,22,23,24,25,26} ; do
+	for t in ${EROOT}${bindir}/${1:-ruby}{18,19,20,21,22,23,24,25,26,27} ; do
 		[[ -e $t ]] || continue
 		echo ${t}
 	done