metasploit_data_models 0.6.13 → 0.6.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,5 +4,5 @@ module MetasploitDataModels
|
|
|
4
4
|
# metasploit-framework/data/sql/migrate to db/migrate in this project, not all models have specs that verify the
|
|
5
5
|
# migrations (with have_db_column and have_db_index) and certain models may not be shared between metasploit-framework
|
|
6
6
|
# and pro, so models may be removed in the future. Because of the unstable API the version should remain below 1.0.0
|
|
7
|
-
VERSION = '0.6.
|
|
7
|
+
VERSION = '0.6.14'
|
|
8
8
|
end
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
|
|
3
|
-
require
|
|
2
|
+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
|
3
|
+
require 'metasploit_data_models/version'
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
|
-
s.name =
|
|
6
|
+
s.name = 'metasploit_data_models'
|
|
7
7
|
s.version = MetasploitDataModels::VERSION
|
|
8
|
-
s.authors = [
|
|
9
|
-
|
|
8
|
+
s.authors = [
|
|
9
|
+
'Luke Imhoff',
|
|
10
|
+
'Trevor Rosen'
|
|
11
|
+
]
|
|
12
|
+
s.email = [
|
|
13
|
+
'luke_imhoff@rapid7.com',
|
|
14
|
+
'trevor_rosen@rapid7.com'
|
|
15
|
+
]
|
|
10
16
|
s.homepage = ""
|
|
11
17
|
s.summary = %q{Database code for MSF and Metasploit Pro}
|
|
12
18
|
s.description = %q{Implements minimal ActiveRecord models and database helper code used in both the Metasploit Framework (MSF) and Metasploit commercial editions.}
|
|
@@ -14,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
14
20
|
s.files = `git ls-files`.split("\n")
|
|
15
21
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
16
22
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
17
|
-
s.require_paths = [
|
|
23
|
+
s.require_paths = ['lib']
|
|
18
24
|
|
|
19
25
|
# ---- Dependencies ----
|
|
20
26
|
s.add_development_dependency 'rake'
|
metadata
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metasploit_data_models
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.14
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
|
+
- Luke Imhoff
|
|
8
9
|
- Trevor Rosen
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
@@ -126,6 +127,7 @@ dependencies:
|
|
|
126
127
|
description: Implements minimal ActiveRecord models and database helper code used
|
|
127
128
|
in both the Metasploit Framework (MSF) and Metasploit commercial editions.
|
|
128
129
|
email:
|
|
130
|
+
- luke_imhoff@rapid7.com
|
|
129
131
|
- trevor_rosen@rapid7.com
|
|
130
132
|
executables:
|
|
131
133
|
- mdm_console
|
|
@@ -356,7 +358,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
356
358
|
version: '0'
|
|
357
359
|
segments:
|
|
358
360
|
- 0
|
|
359
|
-
hash:
|
|
361
|
+
hash: 1872587986820574553
|
|
360
362
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
361
363
|
none: false
|
|
362
364
|
requirements:
|
|
@@ -365,7 +367,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
365
367
|
version: '0'
|
|
366
368
|
segments:
|
|
367
369
|
- 0
|
|
368
|
-
hash:
|
|
370
|
+
hash: 1872587986820574553
|
|
369
371
|
requirements: []
|
|
370
372
|
rubyforge_project:
|
|
371
373
|
rubygems_version: 1.8.24
|