-
Notifications
You must be signed in to change notification settings - Fork 0
/
fun_translations.gemspec
44 lines (39 loc) · 1.97 KB
/
fun_translations.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
43
44
# frozen_string_literal: true
require File.expand_path('lib/fun_translations/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'fun_translations'
spec.version = FunTranslations::VERSION
spec.authors = ['Ilya Krukowski']
spec.email = ['[email protected]']
spec.summary = 'Ruby interface for FunTranslations API.'
spec.description = 'This is a Ruby client that enables you to easily perform translations using ' \
'FunTranslations API.'
spec.homepage = 'https://github.com/bodrovis/fun_translations'
spec.license = 'MIT'
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.7.0'
spec.files = Dir['README.md', 'LICENSE.md',
'CHANGELOG.md', 'lib/**/*.rb',
'fun_translations.gemspec', '.github/*.md',
'Gemfile', 'Rakefile']
spec.extra_rdoc_files = ['README.md']
spec.require_paths = ['lib']
spec.add_dependency 'faraday', '~> 2.6'
spec.add_dependency 'json', '~> 2'
spec.add_dependency 'zeitwerk', '~> 2.4'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.6'
spec.add_development_dependency 'rubocop', '~> 1.6'
spec.add_development_dependency 'rubocop-performance', '~> 1.5'
spec.add_development_dependency 'rubocop-rake', '~> 0.6'
spec.add_development_dependency 'rubocop-rspec', '~> 3.0'
spec.add_development_dependency 'simplecov', '~> 0.22'
spec.add_development_dependency 'simplecov-lcov', '~> 0.8'
spec.add_development_dependency 'webmock', '~> 3.14'
spec.metadata = {
'source_code_uri' => 'https://github.com/bodrovis/fun_translations',
'rubygems_mfa_required' => 'true',
'changelog_uri' => 'https://github.com/bodrovis/fun_translations/blob/master/CHANGELOG.md',
'bug_tracker_uri' => 'https://github.com/bodrovis/fun_translations/issues'
}
end