sermoa / mychores_globalize

A version of the Globalize plugin modified for MyChores

This URL has Read+Write access

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