public
Fork of svenfuchs/i18n
Description: Basic internationalization(i18n) library for Ruby
Homepage:
Clone URL: git://github.com/lawrencepit/i18n.git
lawrencepit (author)
Thu Sep 10 21:56:24 -0700 2009
commit  1a7d89fa345e434b171e6174b197c19246da86b1
tree    6e48d2c79e5be68712f7e4586b7adcc5e9f6e559
parent  0663b01ff4094c2d44022fb1172b28219cc11b1d
i18n / i18n.gemspec
100644 55 lines (50 sloc) 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{i18n}
  s.version = "0.2.0.1"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Sven Fuchs", "Joshua Harvey", "Matt Aimonetti", "Stephan Soller", "Saimon Moore"]
  s.date = %q{2009-08-19}
  s.description = %q{Add Internationalization support to your Ruby application.}
  s.email = %q{rails-i18n@googlegroups.com}
  s.extra_rdoc_files = [
    "README.textile"
  ]
  s.files = [
    "CHANGELOG.textile",
     "MIT-LICENSE",
     "README.textile",
     "Rakefile",
     "VERSION",
     "lib/i18n.rb",
     "lib/i18n/backend/base.rb",
     "lib/i18n/backend/cache.rb",
     "lib/i18n/backend/chain.rb",
     "lib/i18n/backend/fallbacks.rb",
     "lib/i18n/backend/gettext.rb",
     "lib/i18n/backend/pluralization.rb",
     "lib/i18n/backend/simple.rb",
     "lib/i18n/exceptions.rb",
     "lib/i18n/gettext.rb",
     "lib/i18n/helpers/gettext.rb",
     "lib/i18n/locale/fallbacks.rb",
     "lib/i18n/locale/tag.rb",
     "lib/i18n/locale/tag/parents.rb",
     "lib/i18n/locale/tag/rfc4646.rb",
     "lib/i18n/locale/tag/simple.rb",
     "lib/i18n/string.rb"
  ]
  s.homepage = %q{http://rails-i18n.org}
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{i18n}
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{New wave Internationalization support for Ruby}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end