public
Fork of ozataman/globalize
Description: Globalize is a Ruby on Rails plugin designed to support multilingual applications (official repository).
Homepage: http://www.globalize-rails.org
Clone URL: git://github.com/rotuka/globalize.git
Search Repo:
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