Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 918 Bytes

File metadata and controls

58 lines (39 loc) · 918 Bytes

Contributing

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/xyz

Set up your machine. I recommend using Docker:

make install

But of course you can go raw style

bundle install

Add your code and tests and check it passes:

make test  # mri, rbx, jruby
# or
make mri-test
make rbx-test
make jruby-test

Or raw style

bundle exec rspec

Although not required, try to adhere to Rubocop's checks:

make check

Or raw style

bundle exec rubocop

Push 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.