- Install Ruby (1.9.2 as of time of writing)
- Install RubyGems (1.3.7 as of time of writing)
- gem install mysql, rake, authlogic, rspec
- Remove rake.gemspec from C:\Ruby192\lib\ruby\gems\1.9.1\specifications
- Replace libmySQL.dll in C:\Program Files\MySQL\MySQL Server 5.1\bin with the one from InstantRails
- Login to MySQL (mysql -uroot -p)
- CREATE DATABASE DB_NAME;
- CREATE DATABASE DB_NAME_test;
- CREATE USER 'test_user'@'localhost' IDENTIFIED BY 'test_pass';
- GRANT ALL PRIVILEGES ON *.* TO 'test_user'@'localhost' WITH GRANT OPTION;
- Update database.yml correspondingly