boof / categorizable

Simply categorize (tag) your ActiveRecord models.

This URL has Read+Write access

categorizable / Rakefile
100644 14 lines (11 sloc) 0.261 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rake'
require 'rake/testtask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the categorizable plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end