There's a Rails 3.2.3 web application which doesn't use any database. But in spite of that if I use the gem 'sqllite3'
in GemFile
I works perfect. But if I use gem 'pg'
in that file it throws an error
ActiveRecord::ConnectionNotEstablished
Of course, I use different versions of database.yml
when I use postgreSql
or SqlLite3
.
But I definitely don't use any database.
Why is it happening? What should I do to solve it? And how to disable using databases?