-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocaledata.gemspec
35 lines (27 loc) · 1.06 KB
/
localedata.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'localedata/version'
Gem::Specification.new do |spec|
spec.name = 'localedata'
spec.version = Localedata::VERSION
spec.authors = ['Juraj Kostolansky']
spec.email = ['[email protected]']
spec.summary = 'CLI for the Ruby on Rails translation management platform LocaleData'
spec.homepage = 'https://github.com/localedata/localedata-client'
spec.license = 'MIT'
spec.metadata = {
'source_code_uri' => 'https://github.com/localedata/localedata-client',
'changelog_uri' => 'https://github.com/localedata/localedata-client/blob/main/CHANGELOG.md',
'rubygems_mfa_required' => 'true'
}
spec.files = Dir[
'README.md', 'LICENSE.txt', 'CHANGELOG.md', 'localedata.gemspec',
'lib/**/*.rb', 'bin/*'
]
spec.require_paths = ['lib']
spec.executables = ['localedata']
spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency 'faraday', '>= 0.12.0'
spec.add_dependency 'thor', '>= 0.20.0'
end