forked from refinery/refinerycms-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
refinerycms-i18n.gemspec
120 lines (118 loc) · 3.48 KB
/
refinerycms-i18n.gemspec
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
Gem::Specification.new do |s|
s.name = %q{refinerycms-i18n}
s.version = %q{0.9.9.1}
s.description = %q{i18n logic extracted from RefineryCMS, for Refinery CMS.}
s.date = %q{2011-01-18}
s.summary = %q{i18n logic for Refinery CMS.}
s.email = %q{[email protected]}
s.homepage = %q{http://refinerycms.com}
s.authors = %w(Resolve\ Digital)
s.require_paths = %w(lib)
s.add_dependency 'refinerycms', '>= 0.9.8'
s.add_dependency 'routing-filter', '~> 0.1'
s.files = [
'config',
'config/locales',
'config/locales/ar.yml',
'config/locales/bg.yml',
'config/locales/bn-IN.yml',
'config/locales/bs.yml',
'config/locales/ca-ES.yml',
'config/locales/cz.rb',
'config/locales/da.yml',
'config/locales/de-AT.yml',
'config/locales/de.yml',
'config/locales/dsb.yml',
'config/locales/el.yml',
'config/locales/es-AR.yml',
'config/locales/es-CO.yml',
'config/locales/es-MX.yml',
'config/locales/es.yml',
'config/locales/et.yml',
'config/locales/fa.yml',
'config/locales/fi.yml',
'config/locales/fr-CH.yml',
'config/locales/fr.yml',
'config/locales/fun',
'config/locales/fun/en-AU.rb',
'config/locales/fun/gibberish.rb',
'config/locales/fur.yml',
'config/locales/gl-ES.yml',
'config/locales/he.yml',
'config/locales/hr.yml',
'config/locales/hsb.yml',
'config/locales/hu.yml',
'config/locales/id.yml',
'config/locales/is.yml',
'config/locales/it.yml',
'config/locales/ja.yml',
'config/locales/ko.yml',
'config/locales/lo.yml',
'config/locales/lt.yml',
'config/locales/lv.yml',
'config/locales/mk.yml',
'config/locales/nb.yml',
'config/locales/nl.yml',
'config/locales/nn.yml',
'config/locales/pl.yml',
'config/locales/pt-BR.yml',
'config/locales/pt-PT.yml',
'config/locales/rm.yml',
'config/locales/ro.yml',
'config/locales/ru.yml',
'config/locales/sk.yml',
'config/locales/sl.yml',
'config/locales/sr-Latn.yml',
'config/locales/sr.yml',
'config/locales/sv.yml',
'config/locales/sw.yml',
'config/locales/th.rb',
'config/locales/tr.yml',
'config/locales/uk.yml',
'config/locales/vi.yml',
'config/locales/zh-CN.yml',
'config/locales/zh-TW.yml',
'features',
'features/dashboard.feature',
'i18n-js-readme.rdoc',
'lib',
'lib/gemspec.rb',
'lib/refinery',
'lib/refinery/i18n-filter.rb',
'lib/refinery/i18n-js.rb',
'lib/refinery/i18n-js.yml',
'lib/refinery/i18n.js',
'lib/refinery/i18n.rb',
'lib/refinery/translate.rb',
'lib/refinerycms-i18n.rb',
'lib/tasks',
'lib/tasks/i18n-js_tasks.rake',
'lib/tasks/translate.rake',
'lib/translate',
'lib/translate/file.rb',
'lib/translate/keys.rb',
'lib/translate/log.rb',
'lib/translate/storage.rb',
'Rakefile',
'test',
'test/i18n-test.html',
'test/i18n-test.js',
'test/i18n_js_test.rb',
'test/jsunittest',
'test/jsunittest/jsunittest.js',
'test/jsunittest/unittest.css',
'test/resources',
'test/resources/custom_path.yml',
'test/resources/default.yml',
'test/resources/locales.yml',
'test/resources/multiple_files.yml',
'test/resources/no_scope.yml',
'test/resources/simple_scope.yml',
'test/test_helper.rb',
'translate-readme.md'
]
s.test_files = [
'test/i18n_js_test.rb',
'test/test_helper.rb'
]
end