aboutsummaryrefslogtreecommitdiffstats
path: root/hyperterm/tools/ruby.sh
blob: d1b255da7eb272f577f3c33ce5066780d213ccc5 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

if [ -x /usr/bin/ruby ]; then
    # Variable de Entorno para Sass
    # Sass
    _ruby="$(ruby -r rubygems -e "puts Gem.user_dir")/bin"
    if [ -s "$_ruby" ]; then
        export PATH+=:$_ruby
    fi
fi