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 5 years have passed since last update.

今からRailsを触る人が出くわすエラー集(2019/3)

Last updated at Posted at 2019-03-23

タイトルの通りです。

sqlite3 1.4.0

2019/2の時点ではRailsがsqlite3の1.4.0は対応していないらしく、nativeなんたらが「インストールできません」みたいなエラーが発生します。

解決策

Rails sで作ったアプリの中のgemfileで、古いバージョンのsqlite3を指定する。


gem 'sqlite3'

gem 'sqlite3', "1.3.13"
に変更

rails2.6.1とbundler2

rails2.6.1はbundlerの古いバージョンを固定で使用するような仕様になっているらしく、エラーが発生することがあります。

解決策

rbenvを使って、古いバージョンのrubyを指定する。

他のエラーやもっといい解決策等あれば教えてください。

参考リンク
https://ja.stackoverflow.com/questions/52689/ruby-2-6-1-rails-%E3%81%A7-you-must-use-bundler-2-or-greater-with-this-lockfile-%E3%81%8C%E3%81%A7%E3%81%BE%E3%81%99

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?