Sha256: 61968da419dec923bbd1f39ea308837d1d25101bdb9c05369ce1108adf4a691e
Contents?: true
Size: 1.22 KB
Versions: 17
Compression:
Stored size: 1.22 KB
Contents
$:.push File.expand_path('../lib', __FILE__) require 'dradis/plugins/ntospider/version' version = Dradis::Plugins::NTOSpider::VERSION::STRING # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.platform = Gem::Platform::RUBY spec.name = 'dradis-ntospider' spec.version = version spec.summary = 'NTOSpider add-on for the Dradis Framework.' spec.description = 'This add-on allows you to upload and parse output produced from NTOSpider Web Vulnerability Scanner into Dradis.' spec.license = 'GPL-2' spec.authors = ['Daniel Martin'] spec.email = ['etd@nomejortu.com'] spec.homepage = 'http://dradisframework.org' 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', '~> 3.6' spec.add_development_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'rake', '~> 10.0' end
Version data entries
17 entries across 17 versions & 1 rubygems