-
Notifications
You must be signed in to change notification settings - Fork 5
/
dradis-burp.gemspec
33 lines (27 loc) · 1.36 KB
/
dradis-burp.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
$:.push File.expand_path('../lib', __FILE__)
require 'dradis/plugins/burp/version'
version = Dradis::Plugins::Burp::VERSION::STRING
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.platform = Gem::Platform::RUBY
spec.name = 'dradis-burp'
spec.version = version
spec.summary = 'Burp Scanner upload plugin for the Dradis Framework.'
spec.description = 'This plugin allows you to upload and parse output produced from Portswigger\'s Burp Scanner into Dradis.'
spec.license = 'GPL-2'
spec.authors = ['Daniel Martin']
spec.homepage = 'https://dradis.com/integrations/burp.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_dependency 'nokogiri', '~> 1.3'
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rake', '>= 12.3.3'
spec.add_development_dependency 'rspec-rails'
spec.add_development_dependency 'combustion', '~> 0.5.2'
end