diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 32 |
1 files changed, 24 insertions, 8 deletions
@@ -4,20 +4,28 @@ https://github.com/omp/rbpm Manage multiple Ruby installations with no black magic. -INFO +NOTES - rbpm only manages rubies located in the ~/.rubies directory. This - behaviour can be changed by setting the RUBIES_PATH environment - variable to some other location. - - rbpm does not display information about rubies it does not manage, + rbpm only manages rubies located in the ~/.rubies directory. This behaviour + can be changed by setting the RUBIES_PATH environment variable to some other + location. rbpm does not display information about rubies it does not manage, such as any system-wide install. + rbpm performs a substring match when selecting a ruby, using the highest + matching directory when there are multiple matches. + + +DEPENDENCIES + + bash (>= 4.0) + coreutils (sort) + findutils (xargs) + INSTALLING - Save the script to a safe location, then add the following function - to your ~/.bashrc or equivalent file: + Save the script to a safe location, then add the following function to your + ~/.bashrc or equivalent file: rbpm() { source <(/path/to/rbpm.sh "${@}"); } @@ -74,7 +82,15 @@ USAGE Adding /home/omp/.rubies/ruby-1.8.7-p374/bin to PATH. +AUTHORS + + David Vazgenovich Shakaryan + + LICENSE Distributed under the terms of the MIT License. See included COPYING file for the full license text. + + +# vim: set sw=4 sts=4 ts=4 et tw=79 spell spl=en : |