I have recently update my Rail 3.2 to 4. Also Ruby 1.9.3 to 2.0.0.
Everything has been working fine for a couple of week and I cannot figure out why I cannot suddenly start my local server.
I get the following error
/usr/local/rvm/gems/ruby-2.0.0-p247/gems/activerecord-4.0.0/lib/active_record/connection_adapters/connection_specification.rb:58:in `rescue in resolve_hash_connection': Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile. (Gem::LoadError)
My gemfile has always has sqlite3 in a
group :development, :test do
gem 'sqlite3'
end
I can get my local server to work only if I move the sqlite3 out of the dev and test group
I've run bundle check
and all dependencies have been satisfied.
bundle install
every single time works.
I also explicitly started the server this way rails s -e development
and still get the error
Help, please?