forked from rapid7/metasploit_data_models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metasploit_data_models.gemspec
80 lines (64 loc) · 2.75 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# -*- 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 = [
'Samuel Huckins',
'Luke Imhoff',
"David 'thelightcosine' Maloney",
"Trevor 'burlyscudd' Rosen"
]
s.email = [
]
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")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = %w{app/models app/validators lib}
s.required_ruby_version = '>= 2.1'
# ---- Dependencies ----
s.add_development_dependency 'metasploit-version', '~> 0.1.3'
# documentation
s.add_development_dependency 'metasploit-yard', '~> 1.0'
s.add_development_dependency 'yard-activerecord', '~> 0.0.14'
# embed ERDs on index, namespace Module and Class<ActiveRecord::Base> pages
s.add_development_dependency 'yard-metasploit-erd', '~> 0.1.0'
s.add_development_dependency 'rake'
# documentation
# @note 0.8.7.4 has a bug where attribute writers show up as undocumented
s.add_development_dependency 'yard', '< 0.8.7.4'
# debugging
s.add_development_dependency 'pry'
rails_version_constraints = ['>= 4.0.9', '< 4.1.0']
s.add_runtime_dependency 'activerecord', *rails_version_constraints
s.add_runtime_dependency 'activesupport', *rails_version_constraints
s.add_runtime_dependency 'metasploit-concern', '~> 1.0'
s.add_runtime_dependency 'metasploit-model', '~> 1.0'
s.add_runtime_dependency 'railties', *rails_version_constraints
# os fingerprinting
s.add_runtime_dependency 'recog', '~> 1.0'
# arel-helpers: Useful tools to help construct database queries with ActiveRecord and Arel.
s.add_runtime_dependency 'arel-helpers'
# Fixes a problem with arel not being able to visit IPAddr nodes
s.add_runtime_dependency 'postgres_ext'
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