Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 606 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (24 loc) · 606 Bytes

Contributing

  1. Fork the repo.
  2. Run the tests:
BUNDLE_GEMFILE=gemfiles/<PICK YOUR FAVOURITE>.gemfile rake
  1. Introduce your change. If it's a new feature then write a test for it as well.
  2. Make sure that tests are passing.
  3. Push to your fork and submit a pull request.

Docker for development

Alternatively you can use Docker for the development setup. This requires Docker and Docker Compose installed.

make build
make bundle

And in order to run the tests and linter checks:

make test

After you're done, cleanup leftover containers:

make cleanup