前提・実現したいこと
ruby on railsでアプリ開発を行なっていたところrails sができなくなりました
発生している問題・エラーメッセージ
Ignoring nokogiri-1.10.8 because its extensions are not built. Try: gem pristine nokogiri --version 1.10.8 ・ ・ ・ ・ => Booting Puma => Rails 5.2.4.3 application starting in development => Run `rails server -h` for more startup options Puma starting in single mode... * Version 3.12.6 (ruby 2.5.1-p57), codename: Llamas in Pajamas * Min threads: 5, max threads: 5 * Environment: development * Listening on tcp://localhost:3000 Use Ctrl-C to stop ・ ・ ・ [NOTE] You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. For details: http://www.ruby-lang.org/bugreport.html [IMPORTANT] Don't forget to include the Crash Report log file under DiagnosticReports directory in bug reports.
試したこと
gem "nokogiri", ">= 1.10.8"をgemfileに入れてbundle install
bundle update
gem 'mysql2', '>= 0.4.4', '< 0.6.0'→gem 'mysql2', '>= 0.3.18', '< 0.6.0'に変更→bundle install
PC再起動
これらの作業を一通り行なったが何も変わらなかった
補足情報(FW/ツールのバージョンなど)
ruby -v 2.5.1
rails のバージョンを調べる為にrails -vを入れると以下の画像のようなメッセージが出てきて分からないです
https://gyazo.com/45ee7399dd56c57a54829cc6c5e34182
調べた限りは恐らくMysql関係の不具合だと思うのですが解決法が全くわかりません。
もしかしたらmysqlを一度消して再インストールした方がいいかもしれません・・・
あなたの回答
tips
プレビュー