metasploit-concern 0.2.1 → 0.3.0.pre.engine.pre.requires
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 +8 -8
- data/README.md +6 -0
- data/lib/metasploit/concern.rb +0 -1
- data/lib/metasploit/concern/version.rb +3 -2
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjkxYzRjYTM0YjEzMWRmNmRjN2FmZWMzYjJkZWU3ZWJiNDczN2FlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDNmNDNmNWMzZjYwODBlYWY4MWViN2Q1MDdlZmIzZTBiMTNkNTVjMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjFiMTk4ZmY5ZWQyMGU4NGQ0YTE1NTBhNTU4M2Y3NGI4ZmE4Y2FkNjU3NWIy
|
10
|
+
OTNiZmRiMjhiOWNkMDczZWY1NGZjMTZlNTdjMWJjNDg2N2JkYzQyMWNmYmMx
|
11
|
+
ZjAxNmYxYmU3ZWIxZWNkMDhlYjE1NWQ0ZWRkNzU0NDA4MjBiMjA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTg3NzY0YTA2ZGIyOGM3MGUzOWJlMzk3YWUzODgwNjI2ZjUxNzI3OWQ5YWE5
|
14
|
+
NTJjZTRlMjc2ODQyM2M3YmQ5NDgxZWZhZTdiM2U5ZWUzOTJkZjBjNTdjYTI5
|
15
|
+
OWQxZWQ4MTAzMjQ5Y2IyZTQ0NWQ1MGNlODc0NDljNTM4MWQxMDU=
|
data/README.md
CHANGED
@@ -15,10 +15,16 @@ Add this line to your application's `Gemfile`:
|
|
15
15
|
And then execute:
|
16
16
|
|
17
17
|
$ bundle
|
18
|
+
|
19
|
+
**This gem's `Rails::Engine` is not required automatically.** You'll need to also add the following to your `config/application.rb`:
|
20
|
+
|
21
|
+
require 'metasploit/concern/engine'
|
18
22
|
|
19
23
|
Or install it yourself as:
|
20
24
|
|
21
25
|
$ gem install metasploit-concern
|
26
|
+
|
27
|
+
|
22
28
|
|
23
29
|
## Supporting concerns
|
24
30
|
|
data/lib/metasploit/concern.rb
CHANGED
@@ -5,9 +5,10 @@ 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 = 3
|
9
9
|
# The patch number, scoped to the {MINOR} version number.
|
10
|
-
PATCH =
|
10
|
+
PATCH = 0
|
11
|
+
PRERELEASE = 'engine-requires'
|
11
12
|
|
12
13
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the `PRERELEASE` in the
|
13
14
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metasploit-concern
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0.pre.engine.pre.requires
|
5
5
|
platform: ruby
|
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: activesupport
|
@@ -53,15 +53,15 @@ executables: []
|
|
53
53
|
extensions: []
|
54
54
|
extra_rdoc_files: []
|
55
55
|
files:
|
56
|
-
- CONTRIBUTING.md
|
57
|
-
- LICENSE
|
58
|
-
- README.md
|
59
|
-
- Rakefile
|
60
56
|
- app/models/metasploit/concern/loader.rb
|
61
|
-
- lib/metasploit/concern.rb
|
62
57
|
- lib/metasploit/concern/engine.rb
|
63
58
|
- lib/metasploit/concern/version.rb
|
59
|
+
- lib/metasploit/concern.rb
|
64
60
|
- lib/tasks/yard.rake
|
61
|
+
- CONTRIBUTING.md
|
62
|
+
- LICENSE
|
63
|
+
- Rakefile
|
64
|
+
- README.md
|
65
65
|
- spec/support/shared/examples/metasploit/concern/run.rb
|
66
66
|
homepage: https://github.com/rapid7/metasploit-concern
|
67
67
|
licenses:
|
@@ -78,12 +78,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
78
|
version: '0'
|
79
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- - ! '
|
81
|
+
- - ! '>'
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
83
|
+
version: 1.3.1
|
84
84
|
requirements: []
|
85
85
|
rubyforge_project:
|
86
|
-
rubygems_version: 2.
|
86
|
+
rubygems_version: 2.1.11
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
89
|
summary: Automatically include Modules from app/concerns
|