I'm trying to figure my way around a very complex maze, which is a rail configuration. So far, I have managed to configure rvm on ubuntu (for some reason, Ruby is deprecated in ubuntu repositories). I managed to create a rails project. I want my test project to use mysql, not mysqlite.
When I tried "rake db: migrate", I got an error: "!!! There is no gem mysql2. Add it to your Gemfile: gem 'mysql2'"
When I try to install gem install mysql, I get an error message telling me that I need to provide parameters to the install command. However, the list of options is huge, and I have no idea which ones to choose.
How can I get rails3 via rvm running on ubuntu with mysql?
Thank.
source
share