-
Notifications
You must be signed in to change notification settings - Fork 5
/
cobot_client.gemspec
28 lines (23 loc) · 1.02 KB
/
cobot_client.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
# frozen_string_literal: true
require File.expand_path('lib/cobot_client/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['Alexander Lang']
gem.email = ['[email protected]']
gem.description = 'Client for the Cobot API plus helpers'
gem.summary = 'Client for the Cobot API plus helpers'
gem.homepage = 'http://github.com/cobot/cobot_client'
gem.license = 'MIT'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.name = 'cobot_client'
gem.require_paths = ['lib']
gem.version = CobotClient::VERSION
gem.required_ruby_version = ['>=2.7', '<4']
gem.add_dependency 'json', '~>2.0'
gem.add_dependency 'oauth2', '~>2.0'
gem.add_dependency 'rest-client', '~>2.0.1'
gem.add_dependency 'virtus', '~>1.0'
gem.add_development_dependency 'rake', '~>12.3.3'
gem.add_development_dependency 'rspec', '~>3.0'
gem.metadata['rubygems_mfa_required'] = 'true'
end