Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terceiro/rbenv-alternatives
rbenv plugin to hook into the Debian alternatives system
https://github.com/terceiro/rbenv-alternatives
Last synced: about 1 month ago
JSON representation
rbenv plugin to hook into the Debian alternatives system
- Host: GitHub
- URL: https://github.com/terceiro/rbenv-alternatives
- Owner: terceiro
- Created: 2011-09-23T03:55:26.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-04-05T23:28:51.000Z (over 7 years ago)
- Last Synced: 2023-04-12T09:35:05.843Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 105 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rbenv-alternatives
This plugin allow you to add Ruby interpreters available through the Debian
alternatives system into rbenv. This means you can install the different Ruby
interpreters through APT on Debian and derivative distributions, and switch
between them using rbenv.The Ruby interpreters installed via APT will become available to use with rbenv
in addition to any other Ruby interpreter you may have installed into
`~/.rbenv/versions` in any other way.This plugin also install hooks that configure Rubygems to install gems inside
~/.rbenv/${version}/gems. This way you get completely separated Ruby
environments.## Installation
If you have installed rbenv from source into ~/.rbenv, just create a symbolic
link to where you downloaded this plugin inside ~/.rbenv/plugins:$ mkdir ~/.rbenv/plugins
$ ln -s /path/to/rbenv-alternatives ~/.rbenv/pluginsIf you install rbenv through APT, then it will already bring this plugin with
it:# apt-get install rbenv
## Usage
$ rbenv alternatives
$ rbenv versions
1.8.7-debian
1.9.2-debian
$ rbenv global 1.9.2-debian
$ rbenv version
1.9.2-debian (set by /home/terceiro/.rbenv/global)
$ ruby -v
ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]Whenever you install a new Ruby interpreter, or uninstall a previously
installed one, just run `rbenv alternatives` again and it will update your
list of Debian-provided Ruby interpreters with rbenv.## Copyright
Copyright © 2011-2012, Antonio Terceiro
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.