forked from svenfuchs/rails-i18n
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rails-i18n.gemspec
25 lines (22 loc) · 1.04 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
# encoding: utf-8
Gem::Specification.new do |s|
s.name = "rails-i18n"
s.version = '0.6.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.files = Dir.glob("lib/**/*") + Dir.glob("rails/locale/*") +
Dir.glob("rails/pluralization/*") + Dir.glob("rails/transliteration/*") +
%w(README.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.5')
s.add_development_dependency "rails", ">= 3.0.0"
s.add_development_dependency "rspec-rails", ">= 2.7.0"
s.add_development_dependency "i18n-spec", ">= 0.2"
s.add_development_dependency "spork", "~> 1.0rc"
end