Can i use MAMP (MySQL) or XAMPP (MySQL) with Ruby on Rails 3? -


can use mamp (mysql) or xampp (mysql) ruby on rails 3? installed mysql mysql.com , had trouble use mamp/xampp mysql. doing this? configurations need make this. i'm new ror.

thank in advance ;-)

yes, use it, config in database.yml

development:   adapter: mysql2   database: app   username: app_user   password: app_password   socket: /applications/mamp/tmp/mysql/mysql.sock   host: localhost   pool: 5   timeout: 5000   encoding: utf8 

i'm not sure if it's thing changed, maybe must copy mysql header files source of mysql , put in mamp directory


Comments