forked from rapid7/nexpose-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnexpose.gemspec
24 lines (21 loc) · 940 Bytes
/
nexpose.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# encoding: utf-8
APP_NAME = "nexpose"
VERSION = "0.0.9"
REVISION = "12878"
Gem::Specification.new do |s|
s.name = APP_NAME
s.version = VERSION
s.homepage = "https://github.com/rapid7/nexpose-client"
s.summary = "Ruby API for Rapid7 NeXpose"
s.description = "This gem provides a Ruby API to the NeXpose vulnerability management product by Rapid7. This version is based on Metasploit SVN revision #{REVISION}"
s.license = "BSD"
s.authors = ["HD Moore", "Chris Lee"]
s.email = ["hdm@metasploit.com", "christopher_lee@rapid7.com"]
s.files = Dir['[A-Z]*'] + Dir['lib/**/*']
s.require_paths = ["lib"]
s.extra_rdoc_files = ["README.markdown"]
s.required_ruby_version = ">= 1.8.7"
s.platform = "ruby"
s.add_dependency("librex", ">= 0.0.32")
s.add_dependency("rex", ">= 1.0.2")
end