-
Notifications
You must be signed in to change notification settings - Fork 4
/
r18n-core.gemspec
39 lines (30 loc) · 1.31 KB
/
r18n-core.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
# frozen_string_literal: true
require_relative 'lib/r18n-core/version'
Gem::Specification.new do |s|
s.name = 'r18n-core'
s.version = R18n::VERSION
s.summary = 'I18n tool to translate your Ruby application.'
s.description = <<-DESC
R18n is a i18n tool to translate your Ruby application.
It has nice Ruby-style syntax, filters, flexible locales, custom loaders,
translation support for any classes, time and number localization, several
user language support, agnostic core package with out-of-box support for
Rails, Sinatra and desktop applications.
DESC
s.files = Dir['lib/**/*.rb', 'base/**/*.y{a,}ml', 'README.md', 'LICENSE', 'ChangeLog.md']
s.extra_rdoc_files = ['README.md', 'LICENSE']
s.authors = ['Andrey Sitnik', 'Alexander Popov']
s.email = ['[email protected]', '[email protected]']
s.license = 'LGPL-3.0'
github_uri = "https://github.com/r18n/#{s.name}"
s.homepage = github_uri
s.metadata = {
'rubygems_mfa_required' => 'true',
'bug_tracker_uri' => "#{github_uri}/issues",
'changelog_uri' => "#{github_uri}/blob/#{s.version}/ChangeLog.md",
'documentation_uri' => "http://www.rubydoc.info/gems/#{s.name}/#{s.version}",
'homepage_uri' => s.homepage,
'source_code_uri' => github_uri
}
s.required_ruby_version = '>= 3.2', '< 4'
end