I'm trying to run a rails app. Everything is pretty basic. My gemfile is
gem 'rails', '4.0.0'
gem 'mysql2'
database.yml is
development: adapter: mysql2
encoding: utf8
database: #new_app_development
pool: 5
username: root
password: password
host: localhost
gem list gives mysql2 (0.4.0)
but still I'm getting Gem::LoadError
Specified 'mysql2' for database adapter, but the gem is not loaded. Add gem 'mysql2' to your Gemfile.
I tried both bundle install and gem install mysql2.
 
     
     
     
     
    