forked from rapid7/metasploit_data_models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metasploit_data_models.gemspec
65 lines (50 loc) · 2.11 KB
/
metasploit_data_models.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'metasploit_data_models/version'
Gem::Specification.new do |s|
s.name = 'metasploit_data_models'
s.version = MetasploitDataModels::VERSION
s.authors = ['Metasploit Hackers']
s.email = ['[email protected]']
s.homepage = ""
s.summary = %q{Database code for MSF and Metasploit Pro}
s.description = %q{Implements minimal ActiveRecord models and database helper code used in both the Metasploit Framework (MSF) and Metasploit commercial editions.}
s.files = `git ls-files`.split("\n").reject { |file|
file =~ /^bin/
}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = %w{app/models app/validators lib}
s.required_ruby_version = '>= 2.4'
# ---- Dependencies ----
# documentation
s.add_development_dependency 'metasploit-yard'
s.add_development_dependency 'yard-activerecord'
# embed ERDs on index, namespace Module and Class<ApplicationRecord> pages
s.add_development_dependency 'yard-metasploit-erd'
s.add_development_dependency 'rake'
s.add_development_dependency 'yard'
# debugging
s.add_development_dependency 'pry'
s.add_runtime_dependency 'activerecord', '~>6.0'
s.add_runtime_dependency 'activesupport', '~>6.0'
s.add_runtime_dependency 'metasploit-concern'
s.add_runtime_dependency 'metasploit-model', '>=3.1'
s.add_runtime_dependency 'railties', '~>6.0'
s.add_runtime_dependency 'webrick'
# os fingerprinting
s.add_runtime_dependency 'recog', '~> 2.0'
# arel-helpers: Useful tools to help construct database queries with ActiveRecord and Arel.
s.add_runtime_dependency 'arel-helpers'
if RUBY_PLATFORM =~ /java/
# markdown formatting for yard
s.add_development_dependency 'kramdown'
s.add_runtime_dependency 'jdbc-postgres'
s.add_runtime_dependency 'activerecord-jdbcpostgresql-adapter'
s.platform = Gem::Platform::JAVA
else
# markdown formatting for yard
s.add_development_dependency 'redcarpet'
s.add_runtime_dependency 'pg'
s.platform = Gem::Platform::RUBY
end
end