Mercurial > hg > soundsoftware-site
view vendor/plugins/open_id_authentication/Rakefile @ 669:202986dd17e4 live bibliography_plugin_alpha
Merge from branch "cannam_integration"
author | Chris Cannam |
---|---|
date | Fri, 09 Sep 2011 16:56:21 +0100 |
parents | 513646585e45 |
children |
line wrap: on
line source
require 'rake' require 'rake/testtask' require 'rake/rdoctask' desc 'Default: run unit tests.' task :default => :test desc 'Test the open_id_authentication plugin.' Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.pattern = 'test/**/*_test.rb' t.verbose = true end desc 'Generate documentation for the open_id_authentication plugin.' Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'OpenIdAuthentication' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README') rdoc.rdoc_files.include('lib/**/*.rb') end