Sha256: 90c2a9e1ef411a5aa6dd9e8cf1adae57d5edcde5ecf4e98d564b1d5595a72943
Contents?: true
Size: 986 Bytes
Versions: 10
Compression:
Stored size: 986 Bytes
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.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
10 entries across 10 versions & 1 rubygems