Home

Awesome

Learn Test Driven Development with Ruby on Rails

Setup

  1. Follow these instructions to set up Ruby on Rails
  2. Clone this repo
  3. mkdir ~/workspace
  4. git clone git@github.com:fsproru/tdd_with_ror ~/workspace/tdd_with_ror
  5. Setup the project
  6. cd ~/workspace/tdd_with_ror
  7. gem install bundler --version=1.7.9
  8. bundle install
  9. bundle exec rake db:create db:migrate
  10. Run tests and follow instructions
  11. bundle exec rspec
  12. Enjoy!