Manage ruby installations with rbenv.
Returns or sets the currently defined default ruby.
CLI Example:
salt '*' rbenv.default
# 2.0.0-p0
salt '*' rbenv.default 2.0.0-p0
Install Rbenv systemwide
CLI Example:
salt '*' rbenv.install
Install a ruby implementation.
CLI Example:
salt '*' rbenv.install_ruby 2.0.0-p0
Check if Rbenv is installed.
CLI Example:
salt '*' rbenv.is_installed
List the installable versions of ruby.
CLI Example:
salt '*' rbenv.list
Uninstall a ruby implementation.
CLI Example:
salt '*' rbenv.uninstall_ruby 2.0.0-p0
Updates the current versions of Rbenv and Ruby-Build
CLI Example:
salt '*' rbenv.update
List the installed versions of ruby.
CLI Example:
salt '*' rbenv.versions