summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..ec69262
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,9 @@
+require 'yard'
+
+task default: [:yard]
+
+YARD::Rake::YardocTask.new do |t|
+ t.files = ['./mrblib/*', 'src/*']
+ t.options = ['--output-dir', './docs', 'yardoc --markup=markdown|textile|rdoc(default)']
+ t.stats_options = ['--list-undoc']
+end