aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/ruby_on_rails_guides_guidelines.textile
blob: f3c8fa654d9e30c54b52241402650ec1ed206334 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
h2. Ruby on Rails Guides Guidelines

This guide documents guidelines for writing guides. This guide follows itself in a gracile loop.

endprologue.

h3. Textile

Guides are written in "Textile":http://www.textism.com/tools/textile/. There's comprehensive documentation "here":http://redcloth.org/hobix.com/textile/ and a cheatsheet for markup "here":http://redcloth.org/hobix.com/textile/quick.html.

h3. Prologue

Each guide should start with motivational text at the top (that's the little introduction in the blue area.) The prologue should tell the reader what the guide is about, and what they will learn. See for example the "Routing Guide":routing.html.

h3. Titles

The title of every guide uses +h2+, guide sections use +h3+, subsections +h4+, etc.

Capitalize all words except for internal articles, prepositions, conjunctions, and forms of the verb to be:

<plain>
h5. Middleware Stack is an Array
h5. When are Objects Saved?
</plain>

Use the same typography as in regular text:

<plain>
h6. The <tt>:content_type</tt> Option
</plain>

h3. API Documentation Guidelines

The guides and the API should be coherent where appropriate. Please have a look at these particular sections of the "API Documentation Guidelines":api_documentation_guidelines.html:

* "Wording":api_documentation_guidelines.html#wording
* "Example Code":api_documentation_guidelines.html#example-code
* "Filenames":api_documentation_guidelines.html#filenames
* "Fonts":api_documentation_guidelines.html#fonts

Those guidelines apply also to guides.

h3. HTML Guides

h4. Generation

To generate all the guides, just +cd+ into the +railties+ directory and execute:

<plain>
bundle exec rake generate_guides
</plain>

(You may need to run +bundle install+ first to install the required gems.)

To process +my_guide.textile+ and nothing else use the +ONLY+ environment variable:

<plain>
bundle exec rake generate_guides ONLY=my_guide
</plain>

By default, guides that have not been modified are not processed, so +ONLY+ is rarely needed in practice.

To force process of all the guides, pass +ALL=1+.

It is also recommended that you work with +WARNINGS=1+. This detects duplicate IDs and warns about broken internal links.

If you want to generate guides in languages other than English, you can keep them in a separate directory under +source+ (eg. <tt>source/es</tt>) and use the +GUIDES_LANGUAGE+ environment variable:

<plain>
bundle exec rake generate_guides GUIDES_LANGUAGE=es
</plain>

h4. Validation

Please validate the generated HTML with:

<plain>
bundle exec rake validate_guides
</plain>

Particularly, titles get an ID generated from their content and this often leads to duplicates. Please set +WARNINGS=1+ when generating guides to detect them. The warning messages suggest a way to fix them.

h3. Kindle Guides

h4. Generation

To generate guides for the Kindle, you need to provide +KINDLE=1+ as an environment variable:

<plain>
KINDLE=1 bundle exec rake generate_guides
</plain>