prezto_config/modules/ruby/functions/ruby-info

31 lines
729 B
Plaintext
Raw Normal View History

2012-09-07 05:06:50 +02:00
#
2012-09-07 05:17:38 +02:00
# Exposes information about the Ruby environment via the $ruby_info associative
# array.
2012-09-07 05:06:50 +02:00
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
local version
local version_format
local version_formatted
# Clean up previous $ruby_info.
unset ruby_info
typeset -gA ruby_info
if (( $+commands[rvm-prompt] )); then
version="$(rvm-prompt)"
elif (( $+commands[rbenv] )); then
version="$(rbenv version-name)"
2014-02-02 05:37:29 +01:00
elif (( $+commands[ruby] )); then
version="${${$(ruby --version)[(w)1,(w)2]}/ /-}"
2012-09-07 05:06:50 +02:00
fi
# Format version.
if [[ -n "$version" ]]; then
2012-10-02 04:00:12 +02:00
zstyle -s ':prezto:module:ruby:info:version' format 'version_format'
2012-09-07 05:06:50 +02:00
zformat -f version_formatted "$version_format" "v:$version"
ruby_info[version]="$version_formatted"
fi