-
Notifications
You must be signed in to change notification settings - Fork 0
/
r18n-desktop.gemspec
42 lines (32 loc) · 1.42 KB
/
r18n-desktop.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
# frozen_string_literal: true
require_relative 'lib/r18n-desktop/version'
Gem::Specification.new do |s|
s.name = 'r18n-desktop'
s.version = R18n::Desktop::VERSION
s.summary = 'A i18n tool to translate your Ruby desktop application'
s.description = <<-DESC
A i18n tool to translate your desktop application in several languages.
It is just a wrapper for R18n core library.
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', '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 = {
'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,
'rubygems_mfa_required' => 'true',
'source_code_uri' => github_uri
}
s.required_ruby_version = '>= 3.0', '< 4'
s.add_dependency 'r18n-core', '~> 5.0'
end