Ruby on Rails: Difference between revisions
Jump to navigation
Jump to search
Line 107: | Line 107: | ||
* [https://www.digitalocean.com/community/tutorials/how-to-install-ruby-on-rails-with-rbenv-on-ubuntu-22-04 Install Ruby on Rails with rbenv] | * [https://www.digitalocean.com/community/tutorials/how-to-install-ruby-on-rails-with-rbenv-on-ubuntu-22-04 Install Ruby on Rails with rbenv] | ||
* [https://guides.rubyonrails.org/configuring.html Configuring Rails Applications] | * [https://guides.rubyonrails.org/configuring.html Configuring Rails Applications] | ||
* [https://reinteractive.com/articles/Rails-Configuration-Files Rails Configuration Files] | * [https://reinteractive.com/articles/Rails-Configuration-Files Rails Configuration Files] | ||
* [https://github.com/rbenv/rbenv-installer rbenv Installer] | * [https://github.com/rbenv/rbenv-installer rbenv Installer] | ||
Line 114: | Line 113: | ||
* [[TMux]] | * [[TMux]] | ||
* [[Bash]] | * [[Bash]] | ||
* [https://rvm.io/ RVM] | |||
| valign="top" | | | valign="top" | |
Revision as of 23:40, 11 March 2023
Ruby » RVM
sudo apt install gnupg2
gpg2 --keyserver keyserver.ubuntu.com --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
curl -sSL https://get.rvm.io | bash -s stable
Ruby » RVM » Profile
# rvm path setting
if [[ -e ${HOME}/.profile ]]&&[[ -s ${HOME}/.profile ]]&&
[[ "$(grep -c '${HOME}/.rvm/bin/rvm' ${HOME}/.profile)" == 0 ]];then
tee -a ${HOME}/.profile >/dev/null <<'EOF'
# rvm path setting
if [[ ! "${PATH}" =~ "${HOME}/.rvm/bin:" ]]&&
[[ -x "${HOME}/.rvm/bin/rvm" ]];then
export PATH=${PATH}:${HOME}/.rvm/bin
fi
EOF
fi
# rvm script loading
if [[ -e ${HOME}/.profile ]]&&[[ -s ${HOME}/.profile ]]&&
[[ "$(grep -c '${HOME}/.rvm/scripts/rvm' ${HOME}/.profile)" == 0 ]];then
tee -a ${HOME}/.profile >/dev/null <<'EOF'
# rvm script loading
if [[ "${PATH}" =~ "${HOME}/.rvm/bin:" ]]&&
[[ -x "${HOME}/.rvm/scripts/rvm" ]];then
source ${HOME}/.rvm/scripts/rvm
fi
EOF
fi
Ruby » RVM » Profiles
# rvm path setting
for PROFILE_NAME in .bashrc .mkshrc .profile .zshrc;do
if [[ -e ${HOME}/${PROFILE_NAME} ]]&&[[ -s ${HOME}/${PROFILE_NAME} ]]&&
[[ "$(grep -c '${HOME}/.rvm/bin/rvm' ${HOME}/${PROFILE_NAME})" == 0 ]];then
tee -a ${HOME}/${PROFILE_NAME} >/dev/null <<'EOF'
# rvm path setting
if [[ ! "${PATH}" =~ "${HOME}/.rvm/bin:" ]]&&
[[ -x "${HOME}/.rvm/bin/rvm" ]];then
export PATH=${PATH}:${HOME}/.rvm/bin
fi
EOF
fi
done
# rvm script loading
for PROFILE_NAME in .bash_profile .profile .zlogin;do
if [[ -e ${HOME}/${PROFILE_NAME} ]]&&[[ -s ${HOME}/${PROFILE_NAME} ]]&&
[[ "$(grep -c '${HOME}/.rvm/scripts/rvm' ${HOME}/${PROFILE_NAME})" == 0 ]];then
tee -a ${HOME}/${PROFILE_NAME} >/dev/null <<'EOF'
# rvm script loading
if [[ "${PATH}" =~ "${HOME}/.rvm/bin:" ]]&&
[[ -x "${HOME}/.rvm/scripts/rvm" ]];then
source ${HOME}/.rvm/scripts/rvm
fi
EOF
fi
done
Ruby » RBENV
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer | bash
Ruby » RBENV » BashRC
if [[ -e ${HOME}/.bashrc ]]&&[[ -s ${HOME}/.bashrc ]]&&
[[ "$(grep -c '${HOME}/.rbenv/bin/rbenv' ${HOME}/.bashrc)" == 0 ]];then
tee -a ${HOME}/.bashrc >/dev/null <<'EOF'
# rbenv config
if [[ ! "${PATH}" =~ "${HOME}/.rbenv/bin:" ]]&&
[[ -x "${HOME}/.rbenv/bin/rbenv" ]];then
export PATH=${HOME}/.rbenv/bin:${PATH}
eval "$(rbenv init -)"
fi
EOF
fi
References
| ||