Mercurial > hg > soundsoftware-site
annotate vendor/plugins/classic_pagination/.svn/text-base/Rakefile.svn-base @ 100:1412841d48a3 cannam
* Projects page: If I'm logged in but have no projects, use single All Projects heading
* Projects page: Rename "Other Projects" to "Everyone Else's Projects"
* Projects page: Remove stars from my project links; remove key explaining star
* Projects page: Reorder top-right nav links to isolate the "+ New Project" icon
author | Chris Cannam |
---|---|
date | Thu, 16 Dec 2010 16:29:06 +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 classic_pagination 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 classic_pagination plugin.' |
Chris@0 | 16 Rake::RDocTask.new(:rdoc) do |rdoc| |
Chris@0 | 17 rdoc.rdoc_dir = 'rdoc' |
Chris@0 | 18 rdoc.title = 'Pagination' |
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 |