Sha256: bfa5e02dee04f9b30332c96584f9b9432bd20a9be270842d0a63831719f2ff8f

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "rex-arch"
  spec.version       = Rex::Arch::VERSION
  spec.authors       = ["dmohanty-r7"]
  spec.email         = ["Dev_Mohanty@rapid7.com"]

  spec.summary       = %q{This library contains architecture specific information such as registers, opcodes, and stack manipulation routines.}
  spec.description   = %q{This library contains architecture specific information such as registers, opcodes, and stack manipulation routines.}
  spec.homepage      = "https://github.com/rapid7/rex-arch"

  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"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rex-arch-0.1.6 rex-arch.gemspec
rex-arch-0.1.5 rex-arch.gemspec
rex-arch-0.1.4 rex-arch.gemspec
rex-arch-0.1.3 rex-arch.gemspec
rex-arch-0.1.2 rex-arch.gemspec
rex-arch-0.1.1 rex-arch.gemspec
rex-arch-0.1.0 rex-arch.gemspec