Sha256: 0211295cb19f0f39f98a9cc6a9c341154ebcb53d423066c936f2598498191d05

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "rex-bin_tools"
  spec.version       = Rex::BinTools::VERSION
  spec.authors       = ['Metasploit Hackers']
  spec.email         = ['msfdev@metasploit.com']

  spec.summary       = "Ruby Exploitation(rex) Library containing a suite of binary reading and manipulation tools"
  spec.description   = "A suite of tools for analyzing Elf,Mach, and PE format executables to find specific chunks of code."
  spec.homepage      = "https://github.com/rapid7/rex-bin_tools"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "bin"
  spec.executables   = ["msfbinscan", "msfelfscan", "msfmachscan", "msfpescan"]
  spec.require_paths = ["lib"]

  spec.required_ruby_version = '>= 2.2.0'

  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"

  spec.add_runtime_dependency 'metasm'
  spec.add_runtime_dependency 'rex-arch'
  spec.add_runtime_dependency 'rex-struct2'
  spec.add_runtime_dependency 'rex-text'
  spec.add_runtime_dependency 'rex-core'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rex-bin_tools-0.1.9 rex-bin_tools.gemspec
rex-bin_tools-0.1.8 rex-bin_tools.gemspec
rex-bin_tools-0.1.7 rex-bin_tools.gemspec