From edcac65c4496db8fc959eccf1eda0798cd3efb43 Mon Sep 17 00:00:00 2001 From: Jim Menard Date: Thu, 4 Dec 2008 16:44:21 -0500 Subject: [PATCH] documentation tweaks --- README | 2 ++ Rakefile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README b/README index bb2092c..ee27b05 100644 --- a/README +++ b/README @@ -89,6 +89,8 @@ This driver uses the MAC address finder found at http://codeforpeople.com/lib/ruby/macaddr/macaddr-1.0.0/lib/macaddr.rb, which uses Ruby's license (see http://codeforpeople.com/lib/license.txt). +-- # Local Variables: # mode:rdoc # End: +++ diff --git a/Rakefile b/Rakefile index 2b76e40..236aa25 100644 --- a/Rakefile +++ b/Rakefile @@ -8,7 +8,8 @@ Rake::TestTask.new do |t| t.test_files = FileList['tests/test*.rb'] end +desc "Generate documentation" task :rdoc do FileUtils.rm_rf('doc') - system "rdoc --main README README `find lib -name '*.rb'`" + system "rdoc --main README --inline-source --quiet README `find lib -name '*.rb'`" end