I'm facing a problem in a project using Rails 5.2 without ActiveRecord.
I've runned the command rails new project --skip-active-record
and it's ok, but when I run a command to generate a model I get this error:
.rvm/gems/ruby-2.5.1/gems/bundler-1.16.1/lib/bundler/rubygems_integration.rb:404:in `block (2 levels) in replace_gem': Error loading the 'sqlite3' Active Record adapter. Missing a gem it depends on? sqlite3 is not part of the bundle. Add it to your Gemfile. (Gem::LoadError)
I didn't understand why it ask about sqlite 3 in active record if I disabled it and I search over internet and don't find anyone talking about.
What is wrong?
Thanks