Rakefile in signed_form-0.0.1 vs Rakefile in signed_form-0.1.0
- old
+ new
@@ -1,13 +1,6 @@
require "bundler/gem_tasks"
-require "rdoc/task"
desc 'Generate documentation.'
-RDoc::Task.new(:rdoc) do |rdoc|
- rdoc.rdoc_dir = 'rdoc'
- rdoc.title = 'SignedForm'
-
- rdoc.options << '--line-numbers'
- rdoc.rdoc_files.include('README.md')
- rdoc.rdoc_files.include('lib/**/*.rb')
+task :rdoc do
+ system 'yardoc'
end
-