Mercurial > hg > soundsoftware-site
annotate vendor/plugins/open_id_authentication/.svn/text-base/Rakefile.svn-base @ 774:58410c63bb84 feature_334
Force a Google search box rudely into the middle of the search view, just to see how it looks.
It can be styled reasonably well -- but the adverts, when they appear, are atrocious.
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 17 Nov 2011 14:56:55 +0000 |
parents | 513646585e45 |
children |
rev | line source |
---|---|
Chris@0 | 1 require 'rake' |
Chris@0 | 2 require 'rake/testtask' |
Chris@0 | 3 require 'rake/rdoctask' |
Chris@0 | 4 |
Chris@0 | 5 desc 'Default: run unit tests.' |
Chris@0 | 6 task :default => :test |
Chris@0 | 7 |
Chris@0 | 8 desc 'Test the open_id_authentication plugin.' |
Chris@0 | 9 Rake::TestTask.new(:test) do |t| |
Chris@0 | 10 t.libs << 'lib' |
Chris@0 | 11 t.pattern = 'test/**/*_test.rb' |
Chris@0 | 12 t.verbose = true |
Chris@0 | 13 end |
Chris@0 | 14 |
Chris@0 | 15 desc 'Generate documentation for the open_id_authentication plugin.' |
Chris@0 | 16 Rake::RDocTask.new(:rdoc) do |rdoc| |
Chris@0 | 17 rdoc.rdoc_dir = 'rdoc' |
Chris@0 | 18 rdoc.title = 'OpenIdAuthentication' |
Chris@0 | 19 rdoc.options << '--line-numbers' << '--inline-source' |
Chris@0 | 20 rdoc.rdoc_files.include('README') |
Chris@0 | 21 rdoc.rdoc_files.include('lib/**/*.rb') |
Chris@0 | 22 end |