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.

【プログラミング初心者】ローカル開発環境でrails sがエラーになる時の対処法

Posted at

状況

ターミナルでいつも通り、railsサーバーを立ち上げようとしたところ、

terminal
user@usernoMacBook-Air app % rails s
Traceback (most recent call last):
	5: from bin/rails:3:in `<main>'
	4: from bin/rails:3:in `load'
	3: from /Users/user/app名bin/spring:10:in `<top (required)>'
	2: from /Users/user/app/bin/spring:10:in `new'
	1: from /System/Library/Frameworks/Ruby.framework/Versions/
2.6/usr/lib/ruby/2.6.0/bundler/lockfile_parser.rb:95:in `initialize'
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby
/2.6.0/bundler/
lockfile_parser.rb:108:in `warn_for_outdated_bundler_version'
: You must use Bundler 2 or greater with this lockfile. (Bundler::LockfileError)

上記のエラーが出て、サーバーが急に立ち上がらなくなってしまいました。

###環境

terminal

ruby -v
ruby 2.5.3p105 (2018-10-18 revision 65156) [x86_64-darwin19]

bundler -v
Bundler version 1.7.4

行ったこと

bundlerはすでにインストールされている為

terminal
sudo gem update bundler

を行うと、

terminal
Your Ruby version is 2.6.3, but your Gemfile specified 2.5.3

と出てしまう。
開発しているアプリのrubyのバージョンが2.5.3だが
なぜかMacのローカルの開発環境のrubyのバージョンが2.6.3になってしまっており、
(自分で自覚がなくアップグレードしてしまったのかもしれません)
バージョンが違う為、上記が表示されていました。

既にAWSにデプロイ様の本番環境を作っており、本番環境でのrubyのバージョンが
2.5.3だった為バージョンは2.5.3で統一したく、

terminal
rbenv local 2.5.3
(今後、railsを用いて他のアプリをローカルで開発する可能性を考えて
rbenv globalではなく、あえてlocalでこのプロジェクトだけ2.5.3を使うよう指定しました)
terminal
source ~/.bash_profile

これで、無事サーバーが立ち上がりました!

###今後

なぜローカルのrubyのバージョンが上がってしまったのかを
調査したいと思います。。。

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?