Hi, I'm running ROR on my Max OSX Darwin with mysql. I've successfully installed the mysql gem abd have created the active record class by extending ActiveRecord::Migration I have defined my database.yml as follows for development (names changed to protect the innocent

) )
development:
adapter: mysql
database: myData_development
username: userName
passwoed: myPassword
host: localhost
when rake runs it stops with the following
rake aborted!
Access denied for user 'userName'@'localhost' (using password: NO)
2 questions. Why isn't it using the password supplied in the database.yml file? and how can I make it do so?
Thanks for the help.