Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 2.63 KB

CONTRIBUTING.md

File metadata and controls

61 lines (46 loc) · 2.63 KB

Our goal is to encourage frictionless contributions to the project. In order to achieve that, we use Unprotocols C4 process. Please read it, it will answer a lot of questions. Our goal is to merge pull requests as quickly as possible and make new stable releases regularly.

In a nutshell, this means:

  • We merge pull requests rapidly (try!)
  • We are open to diverse ideas
  • We prefer code now over consensus later

An additional commit message kind ("tlog", as in "weblog => blog", "gitlog => tlog") is encouraged, a commit without files that retains a contextualized article on the subject.

The motivation for this is that web is not a reliable place to retain articles at (hosts go down, content gets deleted, etc.). Nor it's easy to find relevant pieces with all the noise out there.

What did the contributor think about when he was developing this or that part? What train of thought was he on?

Keeping the articles in the git log allows to retain them forever (for as long as there's at least one copy of the repository somewhere) and provide context to those who really want to learn more about the project.

It is highly recommended to watch Pieter Hintjens' talk on building open source communities as well as read his book on the same matter.

Submitting an issue

According to development process, the issue should describe a documented and provable. What this means is that an issue should trive to have a clear, understandable problem statement. Just like a patch, it SHOULD be titled "Problem: ..." and have a detailed description describing evidence behind it, be it a bug or a feature request, or a longer term "exploratory" issue.

Preparing a patch

According to patch requirements, the patch should be a minimal and accurate answer to exactly one identified and agreed problem. A patch commit message must consist of a single short (less than 50 characters) line stating the problem ("Problem: ...") being solved, followed by a blank line and then the proposed solution ("Solution: ...").

Problem: short problem statement

Optional longer explanation of the problem that this patch
addresses, giving necessary details for the reader to be
able to understand it better.

Solution: explanation of the solution to the problem. Could
be longer than one line.

Also, please run rustfmt (cargo fmt) over your patch before committing. This will make everybody's life easier!