Sha256: d50bcc6aad4f130d0b3decda8d7b174d9876d37f320ac044c78e275e64c134e6
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rex/core/version' Gem::Specification.new do |spec| spec.name = "rex-core" spec.version = Rex::Core::VERSION spec.authors = ["David Maloney"] spec.email = ["DMaloney@rapid7.com"] spec.summary = %q{Core libraries required for the Ruby Exploitation(Rex) Suite.} spec.description = %q{Core libraries required for the Ruby Exploitation(Rex) Suite.} spec.homepage = "https://github.com/rapid7/rex-core" 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.required_ruby_version = '>= 2.2.0' spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rex-core-0.1.11 | rex-core.gemspec |
rex-core-0.1.10 | rex-core.gemspec |