public
Fork of mattetti/i18n
Description: Basic internationalization(i18n) library for Ruby
Homepage:
Clone URL: git://github.com/svenfuchs/i18n.git
i18n / i18n.gemspec
100644 142 lines (137 sloc) 4.983 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{i18n}
  s.version = "0.2.0"
 
  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/helpers.rb",
     "lib/i18n/backend/pluralization.rb",
     "lib/i18n/backend/simple.rb",
     "lib/i18n/core_ext/string/interpolate.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",
     "test/all.rb",
     "test/api/basics.rb",
     "test/api/interpolation.rb",
     "test/api/lambda.rb",
     "test/api/link.rb",
     "test/api/localization/date.rb",
     "test/api/localization/date_time.rb",
     "test/api/localization/lambda.rb",
     "test/api/localization/time.rb",
     "test/api/pluralization.rb",
     "test/api/translation.rb",
     "test/backend/active_record/active_record_test.rb",
     "test/backend/active_record/all.rb",
     "test/backend/active_record/api_test.rb",
     "test/backend/active_record/setup.rb",
     "test/backend/cache/cache_test.rb",
     "test/backend/chain/api_test.rb",
     "test/backend/chain/chain_test.rb",
     "test/backend/fallbacks/api_test.rb",
     "test/backend/fallbacks/fallbacks_test.rb",
     "test/backend/pluralization/api_test.rb",
     "test/backend/pluralization/pluralization_test.rb",
     "test/backend/simple/all.rb",
     "test/backend/simple/api_test.rb",
     "test/backend/simple/helpers_test.rb",
     "test/backend/simple/lookup_test.rb",
     "test/backend/simple/setup.rb",
     "test/backend/simple/translations_test.rb",
     "test/core_ext/string/interpolate_test.rb",
     "test/fixtures/locales/de.po",
     "test/fixtures/locales/en.rb",
     "test/fixtures/locales/en.yml",
     "test/fixtures/locales/plurals.rb",
     "test/gettext/api_test.rb",
     "test/gettext/backend_test.rb",
     "test/i18n_exceptions_test.rb",
     "test/i18n_load_path_test.rb",
     "test/i18n_test.rb",
     "test/locale/fallbacks_test.rb",
     "test/locale/tag/rfc4646_test.rb",
     "test/locale/tag/simple_test.rb",
     "test/test_helper.rb",
     "test/with_options.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}
  s.test_files = [
    "test/all.rb",
     "test/api/basics.rb",
     "test/api/interpolation.rb",
     "test/api/lambda.rb",
     "test/api/link.rb",
     "test/api/localization/date.rb",
     "test/api/localization/date_time.rb",
     "test/api/localization/lambda.rb",
     "test/api/localization/time.rb",
     "test/api/pluralization.rb",
     "test/api/translation.rb",
     "test/backend/active_record/active_record_test.rb",
     "test/backend/active_record/all.rb",
     "test/backend/active_record/api_test.rb",
     "test/backend/active_record/setup.rb",
     "test/backend/cache/cache_test.rb",
     "test/backend/chain/api_test.rb",
     "test/backend/chain/chain_test.rb",
     "test/backend/fallbacks/api_test.rb",
     "test/backend/fallbacks/fallbacks_test.rb",
     "test/backend/pluralization/api_test.rb",
     "test/backend/pluralization/pluralization_test.rb",
     "test/backend/simple/all.rb",
     "test/backend/simple/api_test.rb",
     "test/backend/simple/helpers_test.rb",
     "test/backend/simple/lookup_test.rb",
     "test/backend/simple/setup.rb",
     "test/backend/simple/translations_test.rb",
     "test/core_ext/string/interpolate_test.rb",
     "test/fixtures/locales/en.rb",
     "test/fixtures/locales/plurals.rb",
     "test/gettext/api_test.rb",
     "test/gettext/backend_test.rb",
     "test/i18n_exceptions_test.rb",
     "test/i18n_load_path_test.rb",
     "test/i18n_test.rb",
     "test/locale/fallbacks_test.rb",
     "test/locale/tag/rfc4646_test.rb",
     "test/locale/tag/simple_test.rb",
     "test/test_helper.rb",
     "test/with_options.rb"
  ]
 
  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