metasploit_data_models 0.22.7-java → 0.22.8-java
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.
- checksums.yaml +4 -4
- data/.travis.yml +7 -10
- data/Rakefile +2 -6
- data/lib/metasploit_data_models/version.rb +1 -1
- data/metasploit_data_models.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3971ad37e6363b3cfbbae51e6d31662d6f806a6e
|
|
4
|
+
data.tar.gz: 75691a38b072d49ed8afdbcce841427429910fdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21c4b74eab36b7cedf5cfe60fdb0d9e8bc62026d99581d8004af2f9891f98b2848c27c67c042a77e77577ea32a56f772632221af6fbfafb68238d31b484592fb
|
|
7
|
+
data.tar.gz: 7afd33ce92de7128a8f31b8fcf81fdf310a9b6564b81d89f29ec511743ecae4545bbba7dadd1898d9052f5c9140f2c51f1f5f59a6703ecc064bfd599e2809b5e
|
data/.travis.yml
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
before_script:
|
|
2
2
|
- cp spec/dummy/config/database.yml.travis spec/dummy/config/database.yml
|
|
3
|
-
- rake db:setup
|
|
3
|
+
- bundle exec rake db:setup
|
|
4
|
+
cache: bundler
|
|
4
5
|
language: ruby
|
|
5
|
-
matrix:
|
|
6
|
-
allow_failures:
|
|
7
|
-
# Rubinius.mri_backtrace primitive failed (PrimitiveFailure)
|
|
8
|
-
- rvm: 'rbx-2.2'
|
|
9
6
|
rvm:
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
|
|
7
|
+
- 1.9.3
|
|
8
|
+
- 2.0
|
|
9
|
+
- 2.1
|
|
10
|
+
- jruby-1.7.17
|
|
11
|
+
sudo: false
|
data/Rakefile
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
require 'bundler/setup'
|
|
4
|
-
rescue LoadError
|
|
5
|
-
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
6
|
-
end
|
|
1
|
+
require 'bundler/gem_tasks'
|
|
2
|
+
require 'bundler/setup'
|
|
7
3
|
|
|
8
4
|
print_without = false
|
|
9
5
|
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
|
|
@@ -6,7 +6,7 @@ module MetasploitDataModels
|
|
|
6
6
|
# The minor version number, scoped to the {MAJOR} version number.
|
|
7
7
|
MINOR = 22
|
|
8
8
|
# The patch number, scoped to the {MINOR} version number.
|
|
9
|
-
PATCH =
|
|
9
|
+
PATCH = 8
|
|
10
10
|
|
|
11
11
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the `PRERELEASE` in the
|
|
12
12
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
|
@@ -43,7 +43,7 @@ Gem::Specification.new do |s|
|
|
|
43
43
|
s.add_runtime_dependency 'recog', '~> 1.0'
|
|
44
44
|
|
|
45
45
|
s.add_runtime_dependency 'metasploit-concern', '~> 0.3.0'
|
|
46
|
-
s.add_runtime_dependency 'metasploit-model', '~> 0.
|
|
46
|
+
s.add_runtime_dependency 'metasploit-model', '~> 0.29.0'
|
|
47
47
|
s.add_runtime_dependency 'railties', '< 4.0.0'
|
|
48
48
|
|
|
49
49
|
# arel-helpers: Useful tools to help construct database queries with ActiveRecord and Arel.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metasploit_data_models
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.22.
|
|
4
|
+
version: 0.22.8
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Huckins
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2015-02-
|
|
14
|
+
date: 2015-02-09 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: rake
|
|
@@ -123,12 +123,12 @@ dependencies:
|
|
|
123
123
|
requirements:
|
|
124
124
|
- - ~>
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: 0.
|
|
126
|
+
version: 0.29.0
|
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
|
128
128
|
requirements:
|
|
129
129
|
- - ~>
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: 0.
|
|
131
|
+
version: 0.29.0
|
|
132
132
|
prerelease: false
|
|
133
133
|
type: :runtime
|
|
134
134
|
- !ruby/object:Gem::Dependency
|