public
Fork of vigetlabs/sandstone
Description: A resourceful plugin providing lightweight content management functionality to Rails applications
Homepage: http://www.viget.com/extend/sandstone-a-drop-in-cms-for-existing-rails-applications/
Clone URL: git://github.com/bscofield/sandstone.git
ben (author)
Tue Feb 26 07:02:46 -0800 2008
commit  73cf952bfd33f3dd03b406bd3fcf7c58ce90eedf
tree    9981db9e70fddb61a335f8912c7d62b11c0497aa
parent  41a1d6375bcb6e30fd4a702beaa26dc4d29ee843
sandstone / Rakefile
100644 23 lines (19 sloc) 0.547 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the sandstone plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the sandstone plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Sandstone'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end