-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvaas.gemspec
24 lines (22 loc) · 1018 Bytes
/
vaas.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vaas/version'
Gem::Specification.new do |s|
s.name = "vaas"
s.version = VAAS::VERSION
s.summary = "Verdict as a Service by G Data"
s.description = "Simple gem to get the verdict of files from G Data"
s.authors = ["Allie Weitenkamp"]
s.email = "[email protected]"
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
s.homepage = "https://github.com/GDATASoftwareAG/vaas"
s.license = "MIT"
s.require_paths = ["lib"]
s.metadata = { "documentation_uri" => "https://github.com/GDATASoftwareAG/vaas/blob/main/ruby/README.md" }
s.required_ruby_version = '>= 3.1.1'
s.add_dependency 'async', '~> 2.15.3'
s.add_dependency 'async-http', '~> 0.70.0'
s.add_dependency 'async-websocket', '~> 0.28.0'
s.add_development_dependency "minitest", '~> 5.17.0'
s.add_development_dependency 'dotenv', '~> 2.8.1'
end