Thanks for taking the time to submit a pull request! These are the few guidelines to keep things coherent.
Fork the project and clone.
Create your feature branch:
git checkout -b features/xyzSet up your machine. I recommend using Docker:
make installBut of course you can go raw style
bundle installAdd your code and tests and check it passes:
make test # mri, rbx, jruby
# or
make mri-test
make rbx-test
make jruby-testOr raw style
bundle exec rspecAlthough not required, try to adhere to Rubocop's checks:
make checkOr raw style
bundle exec rubocopPush your branch and submit a Pull Request.
Add a description of your proposed changes and why they are needed.
I'll review it as soon as I can.