Skip to content

Latest commit

 

History

History
55 lines (32 loc) · 1.32 KB

CONTRIBUTING.md

File metadata and controls

55 lines (32 loc) · 1.32 KB

Changelog

Fork the project

Fork the project on the project page

Checkout the project from your own repository.

git clone https://github.com/[your github username]/wine_bouncer.git
cd wine_bouncer
git remote add upstream https://github.com/Antek-drzewiecki/wine_bouncer.git

Create your feature branch

Make sure your fork is up to date and make a feature from the master branch.

git checkout -b my-new-feature

Prepare your development environment

See README

Run your specs to make sure nothing is broken ;)

Write Tests and/or Code

We appreciate pull requests. Even specs only to identify an problem!

Because we want to ensure the quality of our gem. We cannot accept functional changes without tests.

Write documentation

Documentation is appreciated. Its nice to know people know how to use features. Also feel free to update the changelog with the changes.

Commit your changes

Commit your changes. git add ... git commit -m 'Add some feature'

Push your changes

Push to the branch.

git push origin my-new-feature

Create a pull request

Check your feature branch, once its passes Travis-CI, create a pull request

Thanks you for participating!