From b345082afe9ac44e7dc5a389ce773f5e5e2d7c5d Mon Sep 17 00:00:00 2001 From: Sam Joseph Date: Mon, 20 Jun 2016 09:54:56 +0100 Subject: [PATCH] adds notes about bundler and fixes #15 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 419ed1d8..8ed5d785 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,17 @@ give you guidance as to which tests failed. (You can check the [RSpec documentation](http://rspec.info) to see how the `.rspec` file can be used to customize the output format.) +To ensure you have the rspec gem installed you need bundler and can then +run bundle install like so: +```sh +$ gem install bundler +$ cd hw-ruby-intro +$ bundle +``` + +When the above completes successfully you'll have RSpec installed and can +run `rspec` from the command line to test your code. # 1. Arrays, Hashes, and Enumerables