public
Description: A replacement for Ruby's builtin Pathname, which is unbearably slow
Homepage: http://github.com/stouset/pathname3
Clone URL: git://github.com/stouset/pathname3.git
pathname3 / Rakefile
100644 18 lines (15 sloc) 0.399 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'rake/clean'
require 'rake/rdoctask'
require 'rake/testtask'
 
Rake::RDocTask.new(:doc) do |doc|
  doc.title = 'pathname3'
  doc.main = 'README'
  doc.rdoc_dir = 'doc'
  doc.rdoc_files.include(doc.main, 'lib/**/*.rb')
end
 
Rake::TestTask.new do |test|
  test.test_files = %w{test/lib/test_pathname3.rb}
  test.verbose = true
  test.warning = true
end
 
task :clean => :clobber_doc