Rakefile in rpsg-0.1.1 vs Rakefile in rpsg-0.1.2
- old
+ new
@@ -1,7 +1,15 @@
+require 'rdoc/task'
+
task :default => :test
file_path = "./test/rpsg.rb"
task :test do
ruby file_path
end
+
+
+RDoc::Task.new do |rdoc|
+ # rdoc.main = "README.rdoc"
+ rdoc.rdoc_files.include("README.md", "lib", "bin", "test/rpsg.rb")
+end
\ No newline at end of file