We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63510a9 commit 7cba652Copy full SHA for 7cba652
CONTRIBUTING.md
@@ -18,10 +18,16 @@ Pull requests will trigger a CI job. The following two commands will be expecte
18
If you do not already have a working ruby development environment set up, run the following commands:
19
20
```shell
21
+# One of the following
22
apt-get install ruby ruby-dev # For Debian/Ubuntu
23
dnf install ruby ruby-devel # For Fedora/newer Centos/RHEL
24
yum install ruby ruby-devel # For older Centos/RHEL
25
+
26
+# All below
27
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.
31
```
32
33
Be prepared to write tests to accompany any code you would like to see merged.
0 commit comments