Sha256: 8cd2a4bd37f7db0617c5309083965dcd2717709a9ae5be1c4e94bccfd59e8ff9
Contents?: true
Size: 731 Bytes
Versions: 7
Compression:
Stored size: 731 Bytes
Contents
#!/bin/bash # # rvm : Ruby Version Manager # http://rvm.beginrescueend.com # http://gitub.com/wayneeseguin/rvm # if [[ -s ~/.rvmrc ]] ; then source ~/.rvmrc ; fi eval rvm_path="${rvm_path:-~/.rvm}" source $rvm_path/scripts/color source $rvm_path/scripts/utility source $rvm_path/scripts/selector source $rvm_path/scripts/ruby-installer # TODO: Script not function. source $rvm_path/scripts/cli source $rvm_path/scripts/gems rvm_loaded_flag=1 ; export rvm_loaded_flag rvm_version="$(cat "${rvm_path}/lib/VERSION.yml" | tail -n 3 | sed 's/^.*: //g' | tr "\n" '.' | sed 's/\.$//')" ; export rvm_version alias rvm-restart="source \"${rvm_path}/scripts/rvm\"" if [[ -f "$rvm_path/default" ]] ; then source $rvm_path/default ; fi
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
rvm-0.0.74 | scripts/rvm |
rvm-0.0.73 | scripts/rvm |
rvm-0.0.72 | scripts/rvm |
rvm-0.0.71 | scripts/rvm |
rvm-0.0.70 | scripts/rvm |
rvm-0.0.69 | scripts/rvm |
rvm-0.0.68 | scripts/rvm |