Sha256: ada47acab044b49d954945a7c72ebb8e273cc82dc62e004b2a38b17776774202

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

$:.push File.expand_path('../lib', __FILE__)
require 'dradis/plugins/csv_export/version'
version = Dradis::Plugins::CSVExport::VERSION::STRING

# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
  spec.platform = Gem::Platform::RUBY
  spec.name = 'dradis-csv_export'
  spec.version = version
  spec.summary = 'CSV export plugin for the Dradis Framework.'
  spec.description = 'This plugin allows you to export your Dradis results in CSV format.'

  spec.license = 'GPL-2'

  spec.authors = ['Daniel Martin']
  spec.homepage = 'http://dradis.com'

  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.8.0'

  spec.add_development_dependency 'bundler', '>= 2.2.33'
  spec.add_development_dependency 'rake', '>= 12.3.3'

  spec.add_development_dependency 'rspec-rails'#, '~> 3.0.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dradis-csv_export-4.10.0 dradis-csv_export.gemspec