public
Description: Photo Gallery Management System based on Radiant CMS (Ruby on Rails).
Homepage: http://gravityblast.com/projects/radiant-gallery/
Clone URL: git://github.com/pilu/radiant-gallery.git
Click here to lend your support to: radiant-gallery and make a donation at www.pledgie.com !
Thomas Cowell (author)
Fri Oct 16 01:52:18 -0700 2009
hairballopolis (committer)
Fri Oct 16 11:20:53 -0700 2009
radiant-gallery / Rakefile
100644 25 lines (21 sloc) 0.686 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the gallery extension.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the gallery extension.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'GalleryExtension'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('**/*.rb').exclude('_darcs')
end
 
# Load any custom rakefiles for extension
Dir[File.dirname(__FILE__) + '/tasks/*.rake'].sort.each { |f| require f }