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 / localized_templates.gemspec
100644 38 lines (37 sloc) 1.302 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Gem::Specification.new do |s|
  s.name = "localized_templates"
  s.version = "0.4"
  s.date = "2008-12-18"
  s.summary = "Another templates localization schema for Rails 2.3"
  s.email = "jose.valim@gmail.com"
  s.homepage = "http://github.com/josevalim/localized_templates"
  s.description = "Another templates localization schema for Rails 2.3"
  s.has_rdoc = true
  s.authors = [ "José Valim" ]
  s.files = [
    "MIT-LICENSE",
    "README",
    "Rakefile",
    "lib/localized_templates.rb",
    "lib/localized_rescue/actioncontroller/rescue.rb",
    "lib/localized_templates/actionview/paths.rb",
  ]
  s.test_files = [
    "test/localized_rescue_test.rb",
    "test/localized_templates_test.rb",
    "test/setup.rb",
    "test/fixtures/en-US.yml",
    "test/fixtures/pt-BR.yml",
    "test/fixtures/layouts/default.html.erb",
    "test/fixtures/projects/index.html.erb",
    "test/fixtures/projects/index.rss.builder",
    "test/fixtures/en-US/projects/index.rss.builder",
    "test/fixtures/pt-BR/projects/index.html.erb",
    "test/fixtures/pt-BR/layouts/default.html.erb",
    "test/fixtures/public/500.html",
    "test/fixtures/public/en-US/404.html",
    "test/fixtures/public/pt-BR/404.html"
  ]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README"]
end