Sha256: a1d8137cb523a033d41ef2c09da7dff9577bfd21d86fca9e6becd9c0d54b67f5
Contents?: true
Size: 1.11 KB
Versions: 5
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.2' end
Version data entries
5 entries across 5 versions & 1 rubygems