Sha256: b18891b1d82162394a3478df076fb051136b68d23e39e78ab68d5d2f6d842234

Contents?: true

Size: 1.4 KB

Versions: 1

Compression:

Stored size: 1.4 KB

Contents

# encoding: utf-8

APP_NAME = "rex"
VERSION  = "2.0.11"

Gem::Specification.new do |s|
  s.name                  = APP_NAME
  s.version               = VERSION
  s.homepage              = "https://github.com/rapid7/rex/"
  s.summary               = "Ruby Exploitation Library"
  s.description           = "Rex provides a variety of classes useful for security testing and exploit development."
  s.license               = "BSD"
  s.authors               = ["HD Moore", "Jacob Hammack"]
  s.email                 = ["x@hdm.io", "jacob.hammack@hammackj.com"]
  s.files                 = Dir['rex.gemspec'] + Dir['examples/**'] + Dir['lib/rex.rb'] + Dir['lib/**/*']
  s.require_paths         = ["lib"]
  s.extra_rdoc_files      = ["README.markdown"]
  s.platform              = "ruby"
  s.required_ruby_version = ">= 2.2.0"

  # Needed for Javascript obfuscation
  s.add_runtime_dependency 'jsobfu', '~> 0.4.1'

  # Needed for some admin modules (scrutinizer_add_user.rb)
  s.add_runtime_dependency 'json'

  # Metasm compiler/decompiler/assembler
  s.add_runtime_dependency 'metasm', '~> 1.0.2'

  # Needed by anemone crawler
  s.add_runtime_dependency 'nokogiri'

  # Command line editing, history, and tab completion in msfconsole
  s.add_runtime_dependency 'rb-readline'

  # Needed by anemone crawler
  s.add_runtime_dependency 'robots'

  # Needed so that disk size output isn't horrible
  s.add_runtime_dependency 'filesize'

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rex-2.0.11 rex.gemspec