We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edc6cb9 commit c49cba0Copy full SHA for c49cba0
.gitignore
@@ -1,9 +1,7 @@
1
/.bundle/
2
-/.yardoc
3
/Gemfile.lock
4
-/_yardoc/
5
/coverage/
6
-/doc/
+/html/
7
/pkg/
8
/spec/reports/
9
/tmp/
Rakefile
@@ -1,4 +1,6 @@
require "rbconfig"
+require "rdoc/task"
+
require "bundler/gem_tasks"
desc "Run test"
@@ -8,6 +10,17 @@ end
10
11
task :default => :test
12
13
+RDoc::Task.new do |rdoc|
14
+ rdoc.main = "README.md"
15
+ files = [
16
+ "LICENSE.txt",
17
+ "NEWS.md",
18
+ "README.md",
19
+ "lib/**/*.rb",
20
+ ]
21
+ rdoc.rdoc_files.include(*files)
22
+end
23
24
benchmark_tasks = []
25
namespace :benchmark do
26
Dir.glob("benchmark/*.yaml") do |yaml|
0 commit comments