public
Description: Adds translated form labels to Rails 2.2
Homepage: http://iain.nl/
Clone URL: git://github.com/iain/i18n_label.git
iain (author)
Sat Sep 13 15:29:38 -0700 2008
commit  9f820e24ec60c131524d9be707ba55610ae25f69
tree    9e4327d936dd1b8546859bc43f04a8fe530a20a0
parent  44b1004ff7bd4e5d5c4cfcf236e15e3974ab11c9
i18n_label / Rakefile
100644 12 lines (9 sloc) 0.279 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rake'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
  t.spec_files = FileList['spec/**/*_spec.rb']
end