forked from svenfuchs/rails-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rails-i18n.gemspec
28 lines (25 loc) · 1.17 KB
/
rails-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
# encoding: utf-8
Gem::Specification.new do |s|
s.name = "rails-i18n"
s.version = '4.0.2'
s.authors = ["Rails I18n Group"]
s.email = "[email protected]"
s.homepage = "http://github.com/svenfuchs/rails-i18n"
s.summary = "Common locale data and translations for Rails i18n."
s.description = "A set of common locale data and translations to internationalize and/or localize your Rails applications."
s.license = 'MIT'
s.files = Dir.glob("lib/**/*") + Dir.glob("rails/locale/*") +
Dir.glob("rails/pluralization/*") + Dir.glob("rails/transliteration/*") +
%w(README.md CHANGELOG.md MIT-LICENSE.txt)
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.rubyforge_project = '[none]'
s.required_rubygems_version = '>= 1.3.5'
s.add_dependency('i18n', '~> 0.6')
s.add_dependency('rails', '>= 4.0')
s.add_development_dependency "rails", "= 4.0.4"
s.add_development_dependency "rspec-rails", "= 2.14.2"
s.add_development_dependency "i18n-spec", "= 0.4.0"
s.add_development_dependency "spork", "= 1.0.0rc3"
s.add_development_dependency 'i18n-tasks', '~> 0.3.6'
end