2017-02-25 22:42:31 +00:00
|
|
|
# Contributing to the Rust Cookbook
|
|
|
|
|
2017-05-04 23:43:01 +00:00
|
|
|
The cookbook needs contributors and is intended to be easy to
|
|
|
|
contribute to. Help is welcome.
|
2017-02-25 22:42:31 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
* [Building and testing](#building-and-testing)
|
|
|
|
* [Finding what to contribute](#finding-what-to-contribute)
|
2017-05-11 21:05:36 +00:00
|
|
|
* [Adding an example](#adding-an-example)
|
2017-05-04 23:36:28 +00:00
|
|
|
* [Example guidelines](#example-guidelines)
|
2017-02-25 22:42:31 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
## Building and testing
|
2017-02-25 22:42:31 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
To start, clone the cookbook from git and navigate to that directory:
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
```
|
|
|
|
git clone https://github.com/brson/rust-cookbook.git
|
|
|
|
cd rust-cookbook
|
|
|
|
```
|
2017-02-25 22:42:31 +00:00
|
|
|
|
2017-05-17 18:00:48 +00:00
|
|
|
Cookbook is built with [mdBook], so install that first with Cargo:
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
```
|
|
|
|
cargo install mdbook
|
|
|
|
```
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-17 18:00:48 +00:00
|
|
|
To build and view the cookbook locally, run:
|
2017-02-25 22:42:31 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
```
|
2017-05-17 18:00:48 +00:00
|
|
|
mdbook serve
|
2017-05-04 19:13:44 +00:00
|
|
|
```
|
2017-02-25 22:56:49 +00:00
|
|
|
|
2017-05-17 18:00:48 +00:00
|
|
|
Then open `http://localhost:3000` in a web browser to browse the cookbook. Any
|
|
|
|
changes you make to the cookbook source will be automatically rebuilt and
|
|
|
|
visible in the browser, so it can be helpful to keep this window open while
|
|
|
|
editing.
|
2017-02-25 22:42:31 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
All examples in the cookbook are tested with [skeptic], a tool for
|
|
|
|
testing arbitrary markdown documentation in a style similar to
|
|
|
|
rustdoc.
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
To run the cookbook test suite:
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
```
|
|
|
|
cargo test
|
|
|
|
```
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
[mdbook]: http://azerupi.github.io/mdBook/index.html
|
|
|
|
[skeptic]: https://github.com/brson/rust-skeptic
|
|
|
|
|
|
|
|
## Finding what to contribute
|
|
|
|
|
|
|
|
This project is intended to be simple to contribute to, and to always
|
|
|
|
have obvious next work items available. If at any time there is not
|
|
|
|
something obvious to contribute, that is a bug. Please ask for
|
|
|
|
assistance on the [libz blitz] thread, or email Brian Anderson
|
|
|
|
directly (banderson@mozilla.com).
|
|
|
|
|
|
|
|
The development process for the cookbook is presently oriented around
|
|
|
|
crates: we decide which crates to represent in the cookbook, then come
|
|
|
|
up with example use cases to write, then write the examples. And those
|
|
|
|
are the three basic, recurring types of contributions needed.
|
|
|
|
|
|
|
|
The development process for the cookbook today is tied to the [libz
|
|
|
|
blitz], a broader project to improve the Rust crate ecosystem, and the
|
|
|
|
cookbook presently represents the crates under consideration there.
|
|
|
|
The easiest way to find the most immediate work needed for the
|
|
|
|
cookbook is to follow the "What's next" section at the top of that
|
|
|
|
thread, which should at all times link to something to contribute to
|
|
|
|
the cookbook.
|
|
|
|
|
2017-05-17 18:05:20 +00:00
|
|
|
Otherwise, look for GitHub issues with the [tracking-issue] tag. These
|
2017-05-04 19:13:44 +00:00
|
|
|
contain checklists of the examples we want to provide for individual
|
|
|
|
crates. The simplest way to contribute is to claim one of these
|
|
|
|
examples, and submit a PR adding it. If you do claim one, please leave
|
|
|
|
a comment saying so, so others don't accidentally duplicate your work.
|
|
|
|
|
|
|
|
If you have an idea for an example for a specific crate, please
|
|
|
|
suggest it on those issues.
|
|
|
|
|
|
|
|
Please do not submit examples for crates not yet represented in the
|
2017-05-13 09:10:23 +00:00
|
|
|
cookbook, unless it is part of the libz blitz crate schedule.
|
2017-05-04 19:13:44 +00:00
|
|
|
Contribution will be open to a broader set of crates in the future.
|
|
|
|
For more about which crates are represented in the cookbook, see ["a
|
2017-05-13 09:10:23 +00:00
|
|
|
note about crate representation"][which-crates] in the cookbook.
|
2017-05-04 19:13:44 +00:00
|
|
|
|
2017-05-17 18:05:20 +00:00
|
|
|
[tracking-issue]: https://github.com/brson/rust-cookbook/issues?q=is%3Aissue+is%3Aopen+label%3A%22tracking+issue%22
|
2017-05-11 21:05:36 +00:00
|
|
|
[which-crates]: https://brson.github.io/rust-cookbook/about.html#a-note-about-crate-representation
|
2017-05-11 08:17:08 +00:00
|
|
|
[libz blitz]: https://internals.rust-lang.org/t/rust-libz-blitz/5184
|
2017-05-04 19:13:44 +00:00
|
|
|
|
|
|
|
## Adding an example
|
|
|
|
|
|
|
|
Adding an example involves:
|
|
|
|
|
|
|
|
- Deciding which _section_ of the book it belongs in
|
|
|
|
- Deciding which _categories_ apply to it
|
2017-05-13 09:10:23 +00:00
|
|
|
- Adding the example to the section index in intro.md
|
2017-05-04 19:13:44 +00:00
|
|
|
- Adding the example to the appropriate section markdown file
|
|
|
|
- Updating 'badges' and hyperlinks as needed
|
|
|
|
- Writing a useful description of the example
|
|
|
|
|
|
|
|
Examples are presently organized in three ways:
|
|
|
|
|
|
|
|
- Book sections - the cookbook is a book, and is organized like a book
|
|
|
|
in logical sections, like "basics", "serialization", "concurrency".
|
|
|
|
- Category tags - each example is tagged with one or more category
|
|
|
|
tags, like "math", "file-io".
|
|
|
|
- Crate tags - each example is tagged with one or more crate tags,
|
|
|
|
indicating which crates are represented in the example. Those that
|
|
|
|
use no additional crates are simply tagged 'std'.
|
|
|
|
|
|
|
|
For more about the organization of the book see ["how to read this
|
|
|
|
book"] in the cookbook.
|
|
|
|
|
|
|
|
Hopefully your example belongs to an obvious section and categories,
|
|
|
|
but since the cookbook is so new, quite possibly not. Ask on thread.
|
|
|
|
|
|
|
|
For most steps you can simply follow the lead of existing examples.
|
|
|
|
The art comes in writing effective examples.
|
|
|
|
|
2017-05-11 14:36:00 +00:00
|
|
|
["how to read this book"]: https://brson.github.io/rust-cookbook/about.html#how-to-read-this-book
|
|
|
|
|
2017-05-04 23:36:28 +00:00
|
|
|
## Example guidelines
|
2017-05-04 19:13:44 +00:00
|
|
|
|
|
|
|
Examples in the cookbook have these goals and qualities:
|
|
|
|
|
|
|
|
- They can described by a single sentence that states
|
|
|
|
their utility
|
|
|
|
- They can be read and understood by complete beginners
|
|
|
|
- They are standalone examples that can be copied into a learners'
|
|
|
|
own workspace and compiled and modified for experimentation
|
2017-05-05 21:34:22 +00:00
|
|
|
- They demonstrate real tasks, such that experienced developers
|
2017-05-04 19:13:44 +00:00
|
|
|
can use as a reference
|
|
|
|
- They follow best practices and do not take shortcuts
|
|
|
|
- They use consistent error handling
|
|
|
|
|
|
|
|
Examples should have a simple single-sentence title that describes
|
|
|
|
something a typical Rust user typically wants to do.
|
|
|
|
|
|
|
|
Example are intended to be read by complete beginners, and copied into
|
|
|
|
projects for experimentation. They should follow best practices and
|
|
|
|
not take shortcuts.
|
|
|
|
|
|
|
|
The example should have minimal code that doesn't directly support the
|
|
|
|
description of the example. Keep extra functions and types to a
|
2017-04-30 02:51:16 +00:00
|
|
|
minimum.
|
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
Follow the error handling templates in ["A note about error
|
|
|
|
handling"][errors]. Examples always set up error handling correctly and
|
|
|
|
propagate errors with `?` (not `try!`).
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
Don't use glob imports, even for preludes, so that users can see what
|
|
|
|
traits they are calling. (Some might consider using glob imports for
|
|
|
|
preludes a best practice, making this awkward).
|
2017-04-30 02:51:16 +00:00
|
|
|
|
|
|
|
Sort imports.
|
|
|
|
|
2017-04-30 06:24:42 +00:00
|
|
|
Examples should be simple and obvious enough that an experienced dev
|
2017-05-04 19:13:44 +00:00
|
|
|
won't need comments. Describe the code in prose, not in
|
|
|
|
comments. Things that should be described include traits imported and
|
|
|
|
their methods used. Think about what information here supports the use
|
|
|
|
case and might not be obvious to someone new. Say the minimum possible
|
|
|
|
about aspects that don't directly support the use case. See
|
2017-05-04 23:43:01 +00:00
|
|
|
["basics"] for examples.
|
|
|
|
|
|
|
|
["basics"]: https://brson.github.io/rust-cookbook/basics.html
|
2017-04-30 06:24:42 +00:00
|
|
|
|
2017-05-04 19:13:44 +00:00
|
|
|
Hyperlink all references to APIs, either on doc.rust-lang.org/std or
|
|
|
|
docs.rs, and style them as `code`.
|
2017-04-30 02:51:16 +00:00
|
|
|
|
2017-05-04 23:36:28 +00:00
|
|
|
Finally, this book is intended to also demonstrate the integration
|
|
|
|
of crates that work well together. Super bonus points for examples
|
|
|
|
that feature multiple crates sensibly.
|
|
|
|
|
2017-05-11 21:05:36 +00:00
|
|
|
[errors]: https://brson.github.io/rust-cookbook/about.html#a-note-about-error-handling
|
2017-04-30 02:51:16 +00:00
|
|
|
|