I made this for my newbie friends. I want to help them learn test driven development and Ruby.
-
Clone the repo.
-
cd into the repository (
cd PassRuby/
) -
Install the gem dependencies (
bundle install
) -
Start up guard (
guard
) -
Once you are inside of guard, running rspec will start with the first test and work your way through each exercise. If you'd rather focus on a specific section, such as the refactoring exercises, do not use guard. Instead, try
rspec/spec/refactor
-
Write code in the lib directory to make each failing spec pass
Send a pull request if you'd like to contribute! And Feedback is always welcome.