public
Description: Common attributes translations for Rails 2.2+
Homepage: http://www.diegocarrion.com
Clone URL: git://github.com/dcrec1/activerecord_i18n_defaults.git
tapajos (author)
Fri Jun 12 15:29:37 -0700 2009
dcrec1 (committer)
Fri Jun 12 16:09:27 -0700 2009
100644 17 lines (13 sloc) 0.366 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
require 'spec/rake/spectask'
 
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.spec_opts = %w(-fs --color)
end
 
Spec::Rake::SpecTask.new('rcov') do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = true
  t.rcov_opts = ['--exclude', 'spec,lib,config']
end