blob: 1dd9a020f8fbd2bff94399b149522f5ffa43653e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=7
DESCRIPTION="Small script for changing current Ruby version in shell."
HOMEPAGE="https://github.com/postmodern/chruby"
SRC_URI="https://github.com/postmodern/chruby/archive/v${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="|| ( app-shells/bash app-shells/zsh )"
RDEPEND="${DEPEND}"
pkg_postinst() (
elog "chruby aims to be project-specific Ruby version changer. "
elog "For changing system default Ruby version use "
elog "app-eselect/eselect-ruby."
)
|