public
Description: ActivityStreams is a Rails Plug-in providing a customizable framework for cataloging and publishing user activity and social objects.
Homepage: http://matsonsystems.com/activity-streams/
Clone URL: git://github.com/face/activity_streams.git
commit  9c10377dbf0496281414811845ee6f86b5b61d1b
tree    ecd3597da1d8a10051118a4464c5ae90c78f0668
parent  0f5fdd2a413777746a68f720d90dfab223e98e57
activity_streams / Rakefile
100644 28 lines (24 sloc) 0.723 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
26
27
28
#--
# Copyright (c) 2008 Matson Systems, Inc.
# Released under the BSD license found in the file
# LICENSE included with this ActivityStreams plug-in.
#++
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the activity_streams plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the activity_streams plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'ActivityStreams'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end