ゲームを公開。
PCを再インストールしたので、ブログの動作確認のためのJekyllの環境構築のためにRubyとBundlerが必要。
rbenvとbundlerのインストール。
sudo apt update
sudo apt install -y \
git curl build-essential \
libssl-dev libreadline-dev zlib1g-dev \
libyaml-dev libffi-dev
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init - bash)"' >> ~/.bashrc
source ~/.bashrc
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
rbenv install 3.4.10
rbenv global 3.4.10
うげ、いちいちビルドするのか・・・
なんか、ここはHugoだし、ブログはJekyllだしで、なんか面倒だなぁ。