Sha256: 586501e8855a61b2254e1252f175576e6b2325c39efb652f6155d15f5afb129b

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rex/sslscan/version'

Gem::Specification.new do |spec|
  spec.name          = "rex-sslscan"
  spec.version       = Rex::Sslscan::VERSION
  spec.authors       = ["David Maloney"]
  spec.email         = ["DMaloney@rapid7.com"]

  spec.summary       = %q{Ruby Exploitation(REX) Library for scanning the SSL/TLS capabilities of a server}
  spec.description   = %q{This library is a pure ruby implmenetation of the SSLScan tool originally written
                          by Ian Ventura-Whiting. It currently depends on the system version of OpenSSL}
  spec.homepage      = "https://github.com/rapid7/rex-sslscan"


  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.12"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"

  spec.add_runtime_dependency "rex-text"
  spec.add_runtime_dependency "rex-socket"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rex-sslscan-0.1.3 rex-sslscan.gemspec
rex-sslscan-0.1.2 rex-sslscan.gemspec
rex-sslscan-0.1.1 rex-sslscan.gemspec
rex-sslscan-0.1.0 rex-sslscan.gemspec