public
Description: Another templates localization schema for Rails 2.3 which allows you to create a folder for each locale on your views root
Homepage: http://blog.plataformatec.com.br/
Clone URL: git://github.com/josevalim/localized_templates.git
Click here to lend your support to: localized_templates and make a donation at www.pledgie.com !
josevalim (author)
Tue Mar 31 06:07:59 -0700 2009
commit  4280833fa586fd26dacf20cd8c8c8974914815bb
tree    3ac7209e6d1bc46baf275fde2b684817856d7ab4
parent  852ac754340e0711ade5a833cfd9ae9b449eb80b
localized_templates / Rakefile
100644 20 lines (17 sloc) 0.531 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Run tests for Localized Templates.'
Rake::TestTask.new(:test) do |t|
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for Localized Templates.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'Localized Templates'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('MIT-LICENSE')
  rdoc.rdoc_files.include('lib/**/*.rb')
end