Contributions will be greatly appreciated. You're welcome to submit pull requests, propose features and discuss issues.
Fork the project on Github and check out your copy.
git clone https://github.com/contributor/rails_api_auth.git
cd rails_api_auth
git remote add upstream https://github.com/simplabs/rails_api_auth.git
Make sure your fork is up-to-date and create a topic branch for your feature or bug fix.
git checkout master
git pull upstream master
git checkout -b my-feature-branch
Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build. Add to spec/.
I also appreciate pull requests that highlight or reproduce a problem, even without a fix.
Implement your feature or bug fix. Please be sure to submit clean, well refactored code.
Make sure git knows your name and email address:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Writing good commit logs is important. A commit log should describe what changed and why.
git add ...
git commit
git push origin my-feature-branch
Rebase with upstream/master.
git fetch upstream
git rebase upstream/master
git push origin my-feature-branch -f
(If you have several commits, please squash them into a single commit with git rebase -i
)
Go to https://github.com/contributor/rails_api_auth and select your feature branch. Click the 'Pull Request' button and fill out the form.
If you're new to Pull Requests, check out the Github docs
Any contribution small or big is greatly appreciated. Thank you.