sampleというアプリケーションで(作成できた)コマンドプロンプトでscaffoldを使用しようと、
rails generate scaffold user name:string age:integer
を入力したが、
Could not find gem 'sqlite3 (~> 1.4) x64-mingw32' in any of the gem sources listed in your Gemfile.
Run bundle install
to install missing gems.
というエラーがでました。bundle installした後でも同じエラーがでました。どうすればよいでしょうか?
<追記>rails new sample --skip-gitの実行後の一番下にも
同様のエラーが出ていました。
僕もそのエラーに悩まされました(笑)。おそらくsqliteのバージョン関係のエラーだと思うのでsampleフォルダにあるGemfileというファイルを追記してください。あとsqlite3 -versionを実行してその結果も一緒に見せてください。
あなたの回答
tips
プレビュー