forked from rapid7/nexpose-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnexpose.gemspec
20 lines (18 loc) · 923 Bytes
/
nexpose.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'nexpose'
s.version = '0.7.6'
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.'
s.license = 'BSD'
s.authors = ['HD Moore', 'Chris Lee', 'Michael Daines']
s.email = ['hdm@metasploit.com', 'christopher_lee@rapid7.com', 'michael_daines@rapid7.com']
s.files = Dir['[A-Z]*'] + Dir['lib/**/*']
s.require_paths = ['lib']
s.extra_rdoc_files = ['README.markdown']
s.required_ruby_version = '>= 1.9'
s.platform = 'ruby'
s.add_runtime_dependency('librex', '~> 0.0', '>= 0.0.68')
s.add_runtime_dependency('rex', '~> 1.0', '>= 1.0.2')
end