Привет ребят.
Не могу подружить ROR и mysql
Создал новые проект
rails new project -d mysql
добавил в gemfile
gem 'mysql2'
Сделал
gem mysql2 insatll
Поправил database.yml
default: &default
adapter: mysql2
database: ruby
username: ruby
password: 12345
host: localhost
encoding: utf8
socket: /var/lib/mysql/mysql.sock
development:
<<: *default
test:
<<: *default
production:
<<: *default
Запустил и на сайте вижу
Specified 'mysql2' for database adapter, but the gem is not loaded. Add `gem 'mysql2'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
Он меня просит добавить в гемфайл то что там уже есть, в чем фишка?