Skip to content

Commit ab7b597

Browse files
authored
Merge pull request #3 from nikomatsakis/book
create + publish a book
2 parents 72f413e + 2c992ae commit ab7b597

File tree

6 files changed

+37
-0
lines changed

6 files changed

+37
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
book

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: rust
2+
sudo: false
3+
4+
cache:
5+
- cargo
6+
7+
env:
8+
RUSTINFRA_DEPLOY_DIR: book
9+
import:
10+
- lang/simpleinfra/travis-configs/static-websites.yml
11+
12+
rust:
13+
- stable
14+
15+
before_script:
16+
- (test -x $HOME/.cargo/bin/cargo-install-update || cargo install cargo-update)
17+
- (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.3" mdbook)
18+
- cargo install-update -a
19+
20+
script:
21+
- mdbook build && mdbook test

book.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[book]
2+
authors = ["Niko Matsakis"]
3+
language = "en"
4+
multilingual = false
5+
src = "src"
6+
title = "The Traits Working Group"

src/SUMMARY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Summary
2+
3+
- [Welcome](./welcome.md)
4+
- [Minutes and design notes](./minutes.md)

src/minutes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Minutes from various meetings are located in [the `minutes` directory
2+
on the github repository][minutes].
3+
4+
[minutes]: https://github.com/rust-lang/wg-traits/tree/master/minutes

src/welcome.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Welcome to the traits working group

0 commit comments

Comments
 (0)