0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

開発環境をRails5.2からRails6.0にバージョンを変更する

Posted at

目的

 ローカルでの開発環境を現在のRails5.2からRails 6.0へ変更したい。

現環境

ruby 2.5.1
rails 5.2.4
rvenvでrubyのバージョン管理を行っている。

railsのバージョンはrubyのバージョンに紐付いている。
rubyを別バージョンに変更してrailsを入れ直す。

1. rubyのバージョンをインストールする

rbenv install 2.6.4

2. rubyのバージョンを切り替える

$ rbenv local 2.6.4

localの場合、フォルダだけでに適応する。
globalとするとPC全体で使用するバージョンが変更される。

3. rails6.0をインストールする

gem install rails -v '6.0.0'

4. エラーを解決する

gem install mysql2 -v '0.5.2' --source 'https://rubygems.org/' -- --with-cppflags=-I/usr/local/opt/openssl/include --with-ldflags=-L/usr/local/opt/openssl/lib

参考URL:mysql2 gemインストール時のトラブルシュート

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?