Skip to content

Commit 7cba652

Browse files
committed
Add rspec install step to CONTRIBUTING.md
1 parent 63510a9 commit 7cba652

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: CONTRIBUTING.md

+6
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,16 @@ Pull requests will trigger a CI job. The following two commands will be expecte
1818
If you do not already have a working ruby development environment set up, run the following commands:
1919

2020
```shell
21+
# One of the following
2122
apt-get install ruby ruby-dev # For Debian/Ubuntu
2223
dnf install ruby ruby-devel # For Fedora/newer Centos/RHEL
2324
yum install ruby ruby-devel # For older Centos/RHEL
25+
26+
# All below
2427
gem install bundler
28+
gem install rspec
29+
# Now you are ready to install dependencies with bundle (as described in the
30+
# README file) and to run unit tests.
2531
```
2632

2733
Be prepared to write tests to accompany any code you would like to see merged.

0 commit comments

Comments
 (0)