mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
7910643c6f
git-svn-id: https://svn.thoughtbot.com/plugins/shoulda/trunk@82 7bbfaf0e-4d1d-0410-9690-a8bb5f8ef2aa
23 lines
554 B
Ruby
23 lines
554 B
Ruby
require 'rake'
|
|
require 'rake/testtask'
|
|
require 'rake/rdoctask'
|
|
|
|
Rake::TestTask.new do |t|
|
|
t.libs << 'test'
|
|
t.pattern = 'test/*_test.rb'
|
|
t.verbose = true
|
|
end
|
|
|
|
# Generate the RDoc documentation
|
|
|
|
Rake::RDocTask.new { |rdoc|
|
|
rdoc.rdoc_dir = 'doc'
|
|
rdoc.title = "Shoulda -- Making your tests easy on the fingers and eyes"
|
|
rdoc.options << '--line-numbers' << '--inline-source'
|
|
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
|
|
rdoc.rdoc_files.include('README', 'lib/**/*.rb')
|
|
}
|
|
|
|
desc 'Default: run tests.'
|
|
task :default => ['test']
|
|
|