-
Notifications
You must be signed in to change notification settings - Fork 1
/
dradis-openvas.gemspec
32 lines (26 loc) · 1.27 KB
/
dradis-openvas.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
$:.push File.expand_path('../lib', __FILE__)
require 'dradis/plugins/openvas/version'
version = Dradis::Plugins::OpenVAS::VERSION::STRING
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.platform = Gem::Platform::RUBY
spec.name = 'dradis-openvas'
spec.version = version
spec.summary = 'OpenVAS add-on for the Dradis Framework.'
spec.description = 'This add-on allows you to upload and parse output produced from OpenVAS Scanner (v6 and v7) into Dradis.'
spec.license = 'GPL-2'
spec.authors = ['Daniel Martin']
spec.homepage = 'https://dradis.com/integrations/openvas.html'
spec.files = `git ls-files`.split($\)
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
# By not including Rails as a dependency, we can use the gem with different
# versions of Rails (a sure recipe for disaster, I'm sure), which is needed
# until we bump Dradis Pro to 4.1.
# s.add_dependency 'rails', '~> 4.1.1'
spec.add_dependency 'dradis-plugins', '~> 4.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec-rails'
spec.add_development_dependency 'combustion', '~> 0.5.2'
end