-
Notifications
You must be signed in to change notification settings - Fork 0
/
.yardopts-local
70 lines (69 loc) · 1.89 KB
/
.yardopts-local
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
#
# Only put options in `.yardopts` that are commonly reusable to
# multiple projects. Options and file-lists which are extremely
# project-specific should be stored in this .yardopts-local file.
# (Such as `--title="Project Title"`, or the decision as to whether
# markdown should be handled by Yard or perhaps by something else
# like Pandoc.)
#
# For one thing, manually processing this file allows us to
# do things like, I don't know, *embed comments* in it.
#
# Format:
#
# Comment lines start with ^[[:space:]]*#
# End-of-line comments start with any token matching ^#
#
# All detectable comments are stripped before processing further.
#
# Other line formats (regex):
#
# ^[[:space:]]*-[[:space:]]*$
# A line containing just a single dash, this indicates that any
# filespecs that follow are 'extra' files in Yard terms, and the
# dash and those filespecs will retain their position at the end
# of the command line.
#
# ^[[:space:]]*--?[-[:alnum:]]
# This pattern indicates that the line contains an option for
# the Yard command. It will be collected with other options and
# their order maintained.
#
# ^[[:space:]][^-#]
# Lines matching this pattern are filespecs for Yard to parse.
# Extended globbing (`\*\*`) is permitted.
#
# The final command line is built from
#
# [options] [filespecs] [-] [extra-filespecs]
#
--charset=utf-8
--verbose
--debug
--backtrace
#--list
--no-cache
--title='Text Adventure Framework (TAF) Gem'
--private # Uncomment to expose private elements
--embed-mixins # New in Yard 0.8.*
--markup-provider=rdiscount
--markup=markdown # Remove this line if you want to use pandoc
#
# List this file FIRST as it defines macros used by multiple source
# files.
#
config/macros.yard
#
# Other source files.
#
lib/**/*.rb
test/**/*.rb
#features/**/*.rb
#
# Marker for 'extra' files, and the list of same.
#
-
*.md
# Local Variables:
# eval: (if (intern-soft "fci-mode") (fci-mode 1))
# End: