I am trying to install in my Gemfile the mysql gem. I type down this:
group :development, :test do
#gem 'sqlite3-ruby', :require => 'sqlite3'
#using mysql gem
gem 'mysql', '2.8.1'
end
I run bundle install and everything runs ok. Ok when I run "rake db:reset" i get this:
Please install the sqlite3 adapter: `gem install activerecord-sqlite3-adapter` (sqlite3 is not part of the bundle. Add it to Gemfile.)
Tasks: TOP => db:drop => db:load_config
(See full trace by running task with --trace)
Now why would it even refer to sqlite3 since I am using mysql?