summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAbinoam Praxedes Marques Jr <abinoam@gmail.com>2015-02-19 00:33:59 -0300
committerAbinoam Praxedes Marques Jr <abinoam@gmail.com>2015-02-19 16:26:30 -0300
commit5605a34dae5a620b04cbf38b79ae8a76d0fd637a (patch)
tree1042fd2af4e5b1ba1433edc6e4b67b01d7c391d5 /Rakefile
parent2618342e1247d272da3dd09388f2b69ab632364e (diff)
downloadhighline-5605a34dae5a620b04cbf38b79ae8a76d0fd637a.tar.gz
Use RDoc::Task instead of Rake::RDocTask
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index b7f6263..02eca4d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,11 +15,11 @@ Rake::TestTask.new do |test|
test.warning = true
end
-Rake::RDocTask.new do |rdoc|
+RDoc::Task.new do |rdoc|
rdoc.rdoc_files.include( "README.rdoc", "INSTALL",
"TODO", "Changelog.md",
"AUTHORS", "COPYING",
- "LICENSE", "lib/" )
+ "LICENSE", "lib /*.rb" )
rdoc.main = "README.rdoc"
rdoc.rdoc_dir = "doc/html"
rdoc.title = "HighLine Documentation"