README.md in quality-31.1.0 vs README.md in quality-31.2.0
- old
+ new
@@ -34,23 +34,29 @@
* [reek](https://github.com/troessner/reek)
* [rubocop](https://github.com/bbatsov/rubocop)
## How to use - using Docker
-```
+```bash
docker run -v `pwd`:/usr/app apiology/quality:latest
```
If you'd like to customize, you can link in your own Rakefile like this:
-```
+```bash
docker run -v `pwd`:/usr/app -v `pwd`/Rakefile.quality:/usr/quality/Rakefile apiology/quality:latest
```
The default 'latest' tag contains the Ruby tools in a relatively small
image. You can also get additional tools (see `Rockerfile` in
this directory) by using the tag `jumbo-`(version) (e.g.,
jumbo-latest, jumbo-x.y.z, etc)
+
+To run an individual tool, you can run like this:
+
+```bash
+docker run -v `pwd`:/usr/app apiology/quality:latest rubocop
+```
## How to use - as part of a Ruby-based Rakefile
```bash
pip install 'pycodestyle<2.4.0' flake8