Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove rake test task (seems to be autogenerated already).
  • Loading branch information
cfis committed Aug 12, 2008
1 parent 034bbaa commit 5ca5078
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions rakefile.rb
Expand Up @@ -26,12 +26,6 @@
end
end

desc "Run the tests"
Rake::TestTask::new do |t|
t.test_files = FileList['test/test*.rb']
t.verbose = true
end

desc "Generate the documentation"
Rake::RDocTask::new do |rdoc|
rdoc.rdoc_dir = 'proj4rb-doc/'
Expand Down Expand Up @@ -124,11 +118,18 @@
end
end


# --------- Test Task ---------
Rake::TestTask.new do |t|
t.libs << "test"
t.libs << "lib"
end

# --------- RDoc Documentation ---------
desc "Generate rdoc documentation"
Rake::RDocTask.new("rdoc") do |rdoc|
rdoc.rdoc_dir = 'doc/rdoc'
rdoc.title = "LibXML"
rdoc.title = "proj4rb"
# Show source inline with line numbers
rdoc.options << "--inline-source" << "--line-numbers"
# Make the readme file the start page for the generated html
Expand Down

0 comments on commit 5ca5078

Please sign in to comment.