2020-07-19 23:34:56 +00:00
|
|
|
|
<!---
|
|
|
|
|
SPDX-FileCopyrightText: 2020 Robin Krahl <robin.krahl@ireas.org>
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
# Contributing to rusty-man
|
|
|
|
|
|
|
|
|
|
## Project infrastructure
|
|
|
|
|
|
|
|
|
|
rusty-man is hosted on [sourcehut.org](https://sourcehut.org) and uses these
|
|
|
|
|
services:
|
|
|
|
|
- [git.sr.ht/~ireas/rusty-man][git]: Git repository
|
|
|
|
|
- [todo.sr.ht/~ireas/rusty-man][todo]: issue tracker
|
|
|
|
|
- [lists.sr.ht/~ireas/rusty-man-dev][ml]: mailing list
|
|
|
|
|
- [builds.sr.ht/~ireas/rusty-man][ci]: build server for continuous integration
|
|
|
|
|
|
2020-07-20 08:23:28 +00:00
|
|
|
|
## How to contribute
|
|
|
|
|
|
|
|
|
|
### Writing code
|
|
|
|
|
|
|
|
|
|
Have a look at the [issues][todo] in rusty-man’s issue tracker, especially
|
|
|
|
|
those with the label [good first issue][], to find an issue to work on.
|
|
|
|
|
|
|
|
|
|
### Writing documentation
|
|
|
|
|
|
|
|
|
|
You can help by proofreading and extending the documentation in the readme file
|
|
|
|
|
and the contributing and installation guides. Also, rusty-man is lacking a man
|
|
|
|
|
page and a usage guide – contributions are welcome!
|
|
|
|
|
|
|
|
|
|
### Testing
|
|
|
|
|
|
|
|
|
|
If you are using rusty-man and are encountering any issues, please let me know.
|
|
|
|
|
I’m especially interested in reports from other operating systems than Linux.
|
|
|
|
|
You can also help by writing unit tests, especially for the HTML documentation
|
|
|
|
|
parser.
|
|
|
|
|
|
2020-07-19 23:34:56 +00:00
|
|
|
|
## Submitting patches
|
|
|
|
|
|
2020-07-20 08:23:28 +00:00
|
|
|
|
Please submit patches by sending a mail to the mailing list
|
|
|
|
|
[~ireas/rusty-man-dev@lists.sr.ht][list]. There are three ways to do that:
|
|
|
|
|
|
|
|
|
|
1. Use [`git send-email`][] to send your patches. If you are not familiar with
|
|
|
|
|
the `git send-email` workflow, have a look at [this step-by-step
|
|
|
|
|
guide][guide] or [contact me][] for more information.
|
|
|
|
|
2. Or push your changes to a public repository, for example hosted on your own
|
|
|
|
|
Git server, sourcehut.org, Gitlab or GitHub, and use [`git request-pull`][]
|
|
|
|
|
to send a pull request to the mailing list.
|
|
|
|
|
3. If options one and two don’t work for you, just use your mail client to send
|
|
|
|
|
a mail with a link to your changes and a short description to the mailing
|
|
|
|
|
list.
|
|
|
|
|
|
|
|
|
|
## Testing and checking the code
|
2020-07-19 23:34:56 +00:00
|
|
|
|
|
2020-07-20 08:23:28 +00:00
|
|
|
|
- rusty-man currently has a very small test suite. You can execute it using
|
|
|
|
|
`cargo test`, but make sure to generate rusty-man’s documentation with `cargo
|
|
|
|
|
doc` before running the tests!
|
|
|
|
|
- Use `cargo fmt` for code formatting.
|
|
|
|
|
- Fix all warnings and errors reported by `clippy`.
|
2020-07-19 23:34:56 +00:00
|
|
|
|
|
|
|
|
|
[git]: https://git.sr.ht/~ireas/rusty-man
|
|
|
|
|
[todo]: https://todo.sr.ht/~ireas/rusty-man
|
|
|
|
|
[ml]: https://lists.sr.ht/~ireas/rusty-man-dev
|
|
|
|
|
[ci]: https://builds.sr.ht/~ireas/rusty-man
|
2020-07-20 08:23:28 +00:00
|
|
|
|
|
|
|
|
|
[good first issue]: https://todo.sr.ht/~ireas/rusty-man?search=label:%22good%20first%20issue%22%20status%3Aopen
|
|
|
|
|
|
2020-07-19 23:34:56 +00:00
|
|
|
|
[list]: mailto:~ireas/rusty-man-dev@lists.sr.ht
|
2020-07-20 08:23:28 +00:00
|
|
|
|
[`git send-email`]: https://git-scm.com/docs/git-send-email
|
|
|
|
|
[`git request-pull`]: https://git-scm.com/docs/git-request-pull
|
|
|
|
|
[guide]: https://git-send-email.io
|
|
|
|
|
[contact me]: mailto:robin.krahl@ireas.org
|