It is a tool to get the command line TV program guide
- Ruby 2.x ~
- STEP1 rbenv & ruby-build & ruby-binstubs is Install
cd /usr/local/
git clone https://github.com/sstephenson/rbenv.git
chmod -R g+rwxXs /usr/local/rbenv/
mkdir /usr/local/rbenv/plugins
cd /usr/local/plugin
git clone https://github.com/sstephenson/ruby-build.git
git clone https://github.com/ianheggie/rbenv-binstubs.git
- STEP2 rbenv.sh Create
vim /etc/profile.d/rbenv.sh
export RBENV_ROOT="/usr/local/rbenv"
export PATH="/usr/local/rbenv/bin:$PATH"
eval "$(rbenv init -)"
- STEP3 use source command
source /etc/profile.d/rbenv.sh
- STEP4 check rbenv command
which rbenv
/usr/local/rbenv/bin/rbenv
- STEP5 ruby Install
rbenv install 2.0.0p247
rbenv global 2.0.0p247
rbenv rehash
try fork and pullreq!!