何度も繰り返してやっていたため、メモで残しておく。
brewインストール
すでにインストールされたら省略
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
rubyバージョン確認、rbenvインストール
すでにruby
が2.7以上の場合インストールされたら省略。
バージョンが古い場合はrbenv
インストールして2.7以上のruby
をインストール
brew install rbenv ruby-build rbenv-gem-rehash readline
.bash_profile
や .zprofile
にPATH の設定を追加
vi ~/.bash_profile or vi ~/.zprofile
追加内容(.zprofile)
export PATH=$HOME/.rbenv/bin:$PATH
eval "$(rbenv init -)"
source コマンドで profile を再読み込み
source ~/.bash_profile
rubyインストール
rbenv install -l // インストール可能なリスト確認
rbenv install 2.7.1 // インストール
システム全体のruby のバージョンをインストールしたものに変更
rbenv global 2.7.1
bundlerインストール
gem install bundler
bundle init
Gemfileを編集
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
# gem "rails"
gem "fastlane"
fastlane導入
sudo bundle update
fastlane設定
マニュアルでとりあえず実行し手動でFastfileを変更する(4.を選択)
bundle exec fastlane init