metasploit-model 0.27.4-java → 0.28.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/metasploit/model.rb +0 -1
- data/lib/metasploit/model/version.rb +2 -2
- data/spec/dummy/config/application.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2df7bee3c12dfe4ea8a2146a9ac1410d28557599
|
4
|
+
data.tar.gz: ed5b03c6c92bdd14c094d10adfa1ce373440cbff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f422945165c79a3157fa45f4d1d49c4efa4416b54505a0b89e3d6226bd0eed6fc75752359e9a8d0a8aa025b783ac832f749717c6aabab0ff45aa9bd17f84079
|
7
|
+
data.tar.gz: 0335a14e5436862f58ffca515450e5b1c1b28af078fe0f792c17f4fb4c069973582a813b49a1ee7b83eb9d5560086ef72888e341fd5fa9854b5cab85ef78a0ad
|
data/README.md
CHANGED
@@ -13,6 +13,10 @@ Add this line to your application's Gemfile:
|
|
13
13
|
And then execute:
|
14
14
|
|
15
15
|
$ bundle
|
16
|
+
|
17
|
+
**This gem's `Rails::Engine` is not required automatically.** You'll need to also add the following to your `config/application.rb`:
|
18
|
+
|
19
|
+
require 'metasploit/model/engine'
|
16
20
|
|
17
21
|
Or install it yourself as:
|
18
22
|
|
data/lib/metasploit/model.rb
CHANGED
@@ -5,9 +5,9 @@ module Metasploit
|
|
5
5
|
# The major version number.
|
6
6
|
MAJOR = 0
|
7
7
|
# The minor version number, scoped to the {MAJOR} version number.
|
8
|
-
MINOR =
|
8
|
+
MINOR = 28
|
9
9
|
# The patch number, scoped to the {MINOR} version number.
|
10
|
-
PATCH =
|
10
|
+
PATCH = 0
|
11
11
|
|
12
12
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the
|
13
13
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
@@ -7,6 +7,7 @@ Bundler.require(*Rails.groups)
|
|
7
7
|
# require the engine being tested. In a non-dummy app this would be handled by the engine's gem being in the Gemfile
|
8
8
|
# for real app and Bundler.require requiring the gem.
|
9
9
|
require 'metasploit/model'
|
10
|
+
require 'metasploit/model/engine'
|
10
11
|
|
11
12
|
module Dummy
|
12
13
|
class Application < Rails::Application
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metasploit-model
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Luke Imhoff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -511,7 +511,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
511
511
|
version: '0'
|
512
512
|
requirements: []
|
513
513
|
rubyforge_project:
|
514
|
-
rubygems_version: 2.
|
514
|
+
rubygems_version: 2.1.9
|
515
515
|
signing_key:
|
516
516
|
specification_version: 4
|
517
517
|
summary: Metasploit Model Mixins and Validators
|