public
Description: A Tag Cloud generation for acts_as_taggable_on_steroids
Homepage: http://www.devtech.com.mx/articles/9--5BPlugin-5D-tag-cloud-helper
Clone URL: git://github.com/sgarza/tag_cloud_helper.git
tag_cloud_helper / Rakefile
100644 15 lines (12 sloc) 0.392 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rake'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Generate documentation for the tag_cloud_helper plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'TagCloudHelper'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end