-
Notifications
You must be signed in to change notification settings - Fork 16
/
crowdin-api.gemspec
33 lines (27 loc) · 1.29 KB
/
crowdin-api.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
# frozen_string_literal: true
require File.expand_path('lib/crowdin-api/client/version', __dir__)
Gem::Specification.new do |gem|
gem.name = 'crowdin-api'
gem.version = Crowdin::Client::VERSION
gem.authors = ['Crowdin']
gem.email = ['[email protected]']
gem.homepage = 'https://github.com/crowdin/crowdin-api-client-ruby'
gem.summary = 'Ruby Client for the Crowdin API'
gem.description = 'The Crowdin Ruby Client is used to interact with the Crowdin API from Ruby'
gem.license = 'MIT'
gem.files = `git ls-files`.split("\n")
gem.require_paths = ['lib']
gem.bindir = 'bin'
gem.executables << 'crowdin-console'
gem.required_ruby_version = '>= 2.4'
gem.add_runtime_dependency 'open-uri', '>= 0.1.0', '< 0.2.0'
gem.add_runtime_dependency 'rest-client', '>= 2.0.0', '< 2.2.0'
gem.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.32'
gem.add_development_dependency 'pry', '~> 0.14.1'
gem.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'rubocop', '~> 1.23'
gem.add_development_dependency 'simplecov', '~> 0.22'
gem.add_development_dependency 'simplecov-cobertura', '~> 2.1'
gem.add_development_dependency 'webmock', '~> 3.14'
end