You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
897 B
39 lines
897 B
#
|
|
# Exposes information about the Ruby environment via the $ruby_info associative
|
|
# array.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
# function ruby-info {
|
|
|
|
local version
|
|
local version_format
|
|
local version_formatted
|
|
|
|
# Clean up previous $ruby_info.
|
|
unset ruby_info
|
|
typeset -gA ruby_info
|
|
|
|
# Grab formatting for anything we might have to do
|
|
zstyle -s ':prezto:module:ruby:info:version' format 'version_format'
|
|
|
|
if [[ -n "$version_format" ]]; then
|
|
if (( $+commands[rvm-prompt] )); then
|
|
version="$(rvm-prompt)"
|
|
elif (( $+commands[rbenv] )); then
|
|
version="$(rbenv version-name)"
|
|
elif (( $+commands[ruby] )); then
|
|
version="${${$(ruby --version)[(w)1,(w)2]}/ /-}"
|
|
fi
|
|
|
|
# Format version.
|
|
if [[ -n "$version" && "$version" != "system" ]]; then
|
|
zformat -f version_formatted "$version_format" "v:$version"
|
|
ruby_info[version]="$version_formatted"
|
|
fi
|
|
fi
|
|
|
|
# }
|