forked from rapid7/metasploit-credential
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metasploit-credential.gemspec
42 lines (33 loc) · 1.58 KB
/
metasploit-credential.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'metasploit/credential/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'metasploit-credential'
s.version = Metasploit::Credential::VERSION
s.authors = ['Metasploit Hackers']
s.email = ['[email protected]']
s.homepage = 'https://github.com/rapid7/metasploit-credential'
s.license = 'BSD-3-clause'
s.summary = 'Credential models for metasploit-framework and Metasploit Pro'
s.description = 'The Metasploit::Credential namespace and its ActiveRecord::Base subclasses'
s.files = Dir['{app,config,db,lib,spec}/**/*'] + ['CONTRIBUTING.md', 'LICENSE', 'Rakefile', 'README.md'] - Dir['spec/dummy/log/*.log']
s.test_files = s.files.grep(/spec/)
s.require_paths = %w{app/models app/validators lib}
s.required_ruby_version = '>= 2.4.0'
# patching inverse association in Mdm models.
s.add_runtime_dependency 'metasploit-concern'
# Various Metasploit::Credential records have associations to Mdm records
s.add_runtime_dependency 'metasploit_data_models', [">= 5.0.0"]
# Metasploit::Model::Search
s.add_runtime_dependency 'metasploit-model'
s.add_runtime_dependency 'railties'
# Metasploit::Credential::NTLMHash helper methods
s.add_runtime_dependency 'rubyntlm'
# Required for supporting the en masse importation of SSH Keys
s.add_runtime_dependency 'rubyzip'
s.add_runtime_dependency 'rex-socket'
s.add_runtime_dependency 'net-ssh'
s.add_runtime_dependency 'pg'
s.platform = Gem::Platform::RUBY
end