public
Description: (not the official repo) This plugin is based on acts_as_taggable by DHH but includes extras
Homepage: http://svn.viney.net.nz/things/rails/plugins/acts_as_taggable_on_steroids/README
Clone URL: git://github.com/mattetti/acts_as_taggable_on_steroids.git
 
mattetti (author)
Fri Nov 07 20:10:02 -0800 2008
commit  9b869ea094b500a63b33802b4985e3d96f9c0038
tree    36dd229c8dde4c8d43b39796f89c60c273732e82
parent  28314f402803456ce3c303aa02d4a768d9e1e55b
100644 23 lines (19 sloc) 0.604 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 acts_as_taggable_on_steroids plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the acts_as_taggable_on_steroids plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Acts As Taggable On Steroids'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end