-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Align behaviour between `bundle exec rdoc` and `rake rdoc` By using `.rdoc_options` to specify the RDoc options, we can make most of the rake task options the in-repo defaults. This allows us to use the same options for both `bundle exec rdoc` and `rake rdoc` and get a consistent experience. * Apply suggestions from code review Co-authored-by: Olle Jonsson <olle.jonsson@gmail.com> --------- Co-authored-by: Olle Jonsson <olle.jonsson@gmail.com>
- Loading branch information
1 parent
e47920d
commit 5749b22
Showing
3 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
History.txt | ||
LICENSE.txt | ||
README.txt | ||
RI.txt | ||
RI.md | ||
*.md | ||
*.rdoc | ||
lib | ||
doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
exclude: | ||
- lib/rdoc/rd/block_parser.ry | ||
- lib/rdoc/rd/inline_parser.ry | ||
- lib/rdoc/markdown.kpeg | ||
- lib/rdoc/markdown/literals.kpeg | ||
op_dir: _site # for GitHub Pages and should match the config of RDoc task in Rakefile | ||
title: rdoc Documentation | ||
main_page: README.rdoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters