Authored by Bogdan Poplauschi

Added CONTRIBUTING, ISSUE and PULL_REQUEST TEMPLATE

  1 +# Contributing to SDWebImage
  2 +
  3 +We want to make contributing to this project as easy and transparent as possible. Here are a few guidelines for making all our lives easier.
  4 +
  5 +## Asking questions
  6 +
  7 +We don't use GitHub as a support forum. For any usage questions that are not specific to the project itself, please ask on [Stack Overflow](https://stackoverflow.com/) instead. By doing so, you'll be more likely to quickly solve your problem, and you'll allow anyone else with the same question to find the answer. This also allows maintainers to focus on improving the project for others.
  8 +
  9 +## Reporting Issues
  10 +
  11 +A great way to contribute to the project is to send a detailed issue when you encounter an problem.
  12 +It is very important to check for the same problem or suggestion in the project's issue list first. If you find a match, just add a small comment there.
  13 +Doing this helps prioritize the most common problems and requests.
  14 +
  15 +When reporting issues, please include the following:
  16 +
  17 +- The platform name and version (e.g. iOS 8.1)
  18 +- The library version
  19 +- The integration method (e.g. CocoaPods/Carthage/manually)
  20 +- The version of Xcode you're using
  21 +- The full output of any stack trace or compiler error
  22 +- A small demo project that replicates the issue (especially if the way to reproduce the issue is not straight-forward)
  23 +- Any other details that would be useful in understanding the problem
  24 +
  25 +This information will help us review and fix your issue faster.
  26 +
  27 +
  28 +Please do not be offended if we close your issue and reference this document.
  29 +If you believe the issue is truely a fault in the project’s codebase, re-open it.
  30 +
  31 +## Pull Requests
  32 +
  33 +We gladly accept any PR's assuming they are well written, documented ( if necessary ) and preferably have test code.
  34 +If you're unsure if we'll accept a new feature please open an issue requesting it and we can have a discussion before you code and submit a PR.
  35 +
  36 +Checklist:
  37 +- Fork the repo and create your branch from the latest master (to minimize the conflicts)
  38 +- If you've added code that should be tested, add tests.
  39 +- If you've changed APIs, update the documentation.
  40 +- Ensure the test suite passes.
  41 +- Make sure your code lints (pod lib lint)
  42 +
  1 +### New Issue Checklist
  2 +
  3 +* [ ] I have read and understood the [CONTRIBUTING guide](https://github.com/rs/SDWebImage/blob/master/.github/CONTRIBUTING.md)
  4 +* [ ] I have read the [Documentation](http://cocoadocs.org/docsets/SDWebImage/)
  5 +* [ ] I have searched for a similar issue in the [project](https://github.com/rs/SDWebImage/issues) and found none
  6 +
  7 +### Issue Info
  8 +
  9 + Info | Value |
  10 +-------------------------|-------------------------------------|
  11 + Platform Name | e.g. ios / tvos
  12 + Platform Version | e.g. 8.0
  13 + SDWebImage Version | e.g. 3.7.6
  14 + Integration Method | e.g. carthage / cocoapods / manually
  15 + Xcode Version | e.g. Xcode 7.3
  16 + Repro rate | e.g. all the time (100%) / sometimes x% / only once
  17 + Repro with our demo prj | e.g. does it happen with our demo project?
  18 + Demo project link | e.g. link to a demo project that highlights the issue
  19 +
  20 +### Issue Description and Steps
  21 +
  22 +Please fill in the detailed description of the issue (full output of any stack trace, compiler error, ...) and the steps to reproduce the issue.
  23 +
  1 +### New Pull Request Checklist
  2 +
  3 +* [ ] I have read and understood the [CONTRIBUTING guide](https://github.com/rs/SDWebImage/blob/master/.github/CONTRIBUTING.md)
  4 +* [ ] I have read the [Documentation](http://cocoadocs.org/docsets/SDWebImage/)
  5 +* [ ] I have searched for a similar pull request in the [project](https://github.com/rs/SDWebImage/pulls) and found none
  6 +
  7 +* [ ] I have updated this branch with the latest master to avoid conflicts (via merge from master or rebase)
  8 +* [ ] I have added the required tests to prove the fix/feature I am adding
  9 +* [ ] I have updated the documentation (if necesarry)
  10 +* [ ] I have run the tests and they pass
  11 +* [ ] I have run the lint and it passes (`pod lib lint`)
  12 +
  13 +This merge request fixes / reffers to the following issues: ...
  14 +
  15 +### Pull Request Description
  16 +
  17 +...
  18 +