-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmsfrpc-client.gemspec
More file actions
32 lines (29 loc) · 1.1 KB
/
msfrpc-client.gemspec
File metadata and controls
32 lines (29 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'msfrpc-client/version'
Gem::Specification.new do |spec|
spec.name = 'msfrpc-client'
spec.version = Msf::RPC::VERSION
spec.authors = [
'HD Moore',
'Brent Cook'
]
spec.email = [
'x@hdm.io',
'bcook@rapid7.com'
]
spec.homepage = "http://www.metasploit.com/"
spec.summary = %q{Ruby API for the Rapid7 Metasploit RPC service}
spec.description = %q{
This gem provides a Ruby client API to access the Rapid7 Metasploit RPC service.
}.gsub(/\s+/, ' ').strip
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.require_paths = ['lib']
spec.licenses = ['BSD-2-Clause']
spec.add_runtime_dependency 'msgpack', '~> 1'
spec.add_development_dependency "rspec", '~> 3'
# Intentionally not added: https://github.com/rapid7/msfrpc-client/pull/5
# spec.add_development_dependency "librex"
end