Ruby basic: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Overview == Ruby 프로그래밍 내용 정리 category:ruby") |
|||
Line 2: | Line 2: | ||
Ruby 프로그래밍 내용 정리 | Ruby 프로그래밍 내용 정리 | ||
== rbenv == | |||
Install from git. | |||
<pre> | |||
$ git clone git://github.com/sstephenson/rbenv.git .rbenv | |||
</pre> | |||
.bash_profile 수정 | |||
<pre> | |||
[ -f "$HOME/.profile" ] && source "$HOME/.profile" | |||
[ -f "$HOME/.bashrc" ] && source "$HOME/.bashrc" | |||
</pre> | |||
[[category: | .bashrc 수정 | ||
<pre> | |||
export RBENV_ROOT="${HOME}/.rbenv" | |||
if [ -d "${RBENV_ROOT}" ]; then | |||
export PATH="${RBENV_ROOT}/bin:${PATH}" | |||
eval "$(rbenv init -)" | |||
fi | |||
</pre> | |||
[[category:programming]] |
Revision as of 21:36, 21 October 2015
Overview
Ruby 프로그래밍 내용 정리
rbenv
Install from git.
$ git clone git://github.com/sstephenson/rbenv.git .rbenv
.bash_profile 수정
[ -f "$HOME/.profile" ] && source "$HOME/.profile" [ -f "$HOME/.bashrc" ] && source "$HOME/.bashrc"
.bashrc 수정
export RBENV_ROOT="${HOME}/.rbenv" if [ -d "${RBENV_ROOT}" ]; then export PATH="${RBENV_ROOT}/bin:${PATH}" eval "$(rbenv init -)" fi