Sha256: 93886c0abc990fbaa7eb9e983eef2a43df62d701b76bb0390eeae8b6def51315
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
$:.push File.expand_path('../lib', __FILE__) require 'dradis/plugins/projects/version' # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.platform = Gem::Platform::RUBY spec.name = 'dradis-projects' spec.version = Dradis::Plugins::Projects::VERSION::STRING spec.summary = 'Project export/upload for the Dradis Framework.' spec.description = 'This plugin allows you to dump the contents of the repo into a zip archive and restore the state from one of them.' 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)/}) spec.add_development_dependency 'bundler', '~> 1.6' spec.add_development_dependency 'combustion' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec' spec.add_dependency 'dradis-plugins', '~> 3.7' spec.add_dependency 'rubyzip', '~> 1.2.1' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dradis-projects-3.9.0 | dradis-projects.gemspec |
dradis-projects-3.8.0 | dradis-projects.gemspec |
dradis-projects-3.7.0 | dradis-projects.gemspec |