-
-
Notifications
You must be signed in to change notification settings - Fork 411
/
i18n.gemspec
33 lines (28 loc) · 1.53 KB
/
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
# encoding: utf-8
$: << File.expand_path('../lib', __FILE__)
require 'i18n/version'
Gem::Specification.new do |s|
s.name = "i18n"
s.version = I18n::VERSION
s.authors = ["Sven Fuchs", "Joshua Harvey", "Matt Aimonetti", "Stephan Soller", "Saimon Moore", "Ryan Bigg"]
s.email = "rails-i18n@googlegroups.com"
s.homepage = "https://github.com/ruby-i18n/i18n"
s.summary = "New wave Internationalization support for Ruby"
s.description = "New wave Internationalization support for Ruby."
s.license = "MIT"
s.metadata = {
'bug_tracker_uri' => 'https://github.com/ruby-i18n/i18n/issues',
'changelog_uri' => 'https://github.com/ruby-i18n/i18n/releases',
'documentation_uri' => 'https://guides.rubyonrails.org/i18n.html',
'source_code_uri' => 'https://github.com/ruby-i18n/i18n',
}
s.files = Dir.glob("lib/**/*") + %w(README.md MIT-LICENSE)
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.required_rubygems_version = '>= 1.3.5'
s.required_ruby_version = '>= 2.3.0'
s.post_install_message = if RUBY_VERSION < '3.2'
"PSA: I18n will be dropping support for Ruby < 3.2 in the next major release (April 2025), due to Ruby's end of life for 3.1 and below (https://endoflife.date/ruby). Please upgrade to Ruby 3.2 or newer by April 2025 to continue using future versions of this gem."
end
s.add_dependency 'concurrent-ruby', '~> 1.0'
end