summaryrefslogtreecommitdiff
path: root/libre/ruby/ruby.install
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-04-21 13:13:45 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-04-21 13:13:45 -0500
commit4d9a47a1e9e4a214057db1c34b32de1c57097071 (patch)
tree9f72f1e17172c13db5f2852e6998b98ce2e8e451 /libre/ruby/ruby.install
parent6a7b6f5ed8acb69632f9479a64c56e910f4a29b7 (diff)
downloadabslibre-4d9a47a1e9e4a214057db1c34b32de1c57097071.tar.gz
abslibre-4d9a47a1e9e4a214057db1c34b32de1c57097071.tar.bz2
abslibre-4d9a47a1e9e4a214057db1c34b32de1c57097071.zip
ruby-2.5.1-1.parabola1: updating version
Diffstat (limited to 'libre/ruby/ruby.install')
-rw-r--r--libre/ruby/ruby.install22
1 files changed, 0 insertions, 22 deletions
diff --git a/libre/ruby/ruby.install b/libre/ruby/ruby.install
deleted file mode 100644
index 165936c23..000000000
--- a/libre/ruby/ruby.install
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-print_gem_default_target() {
- echo 'The default location of gem installs is $HOME/.gem/ruby'
- echo 'Add the following line to your PATH if you plan to install using gem'
- echo '$(ruby -e "puts Gem.user_dir")/bin'
- echo 'If you want to install to the system wide location, you must either:'
- echo 'edit /etc/gemrc or run gem with the --no-user-install flag.'
-}
-
-# arg 1: the new package version
-post_install() {
- print_gem_default_target
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-post_upgrade() {
- if [ "$(vercmp $2 1.9.3_p125-4)" -lt 0 ]; then
- print_gem_default_target
- fi
-}