public
Description: Rails plugin for making collaborative, YUI compliant web pages. Generate your own Rails plugins to share components with any Jivepages app. Also see the sample app.
Homepage:
Clone URL: git://github.com/pmark/jivepages.git
Mark Anderson (author)
Sun Jun 15 02:14:41 -0700 2008
commit  3d0fb032f02abb7942fafc3e6d723d84aa9bf7da
tree    8857f91d9222a2a1f13250a4adb48227ebf0b32c
parent  a3b7ac7423e102fa9cc1086ec11f3f72b7261508
jivepages / 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 jivepages plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the jivepages plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Jivepages'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end