metasploit-concern 0.2.1 → 0.3.0.pre.engine.pre.requires

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTdlYjI1ZmJjMjQ5MWFkNDMxNTRjYWU5NmE2OThkNGMzMjM4YWUzOA==
4
+ NjkxYzRjYTM0YjEzMWRmNmRjN2FmZWMzYjJkZWU3ZWJiNDczN2FlMw==
5
5
  data.tar.gz: !binary |-
6
- MzM5ZWNhMTA5NmQ4YmJiNWQxNTQ4YWM4NDlmM2ViNTFlYWE4NDIwNQ==
6
+ NDNmNDNmNWMzZjYwODBlYWY4MWViN2Q1MDdlZmIzZTBiMTNkNTVjMw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZDAzZGQ2YjFjODY5NDg2ZTY0NGU0OTIxODk5YzljMDMyODg0MzExZGE4NWY5
10
- ZDBjZmQ5MWE4ZjMzN2RjYTY4M2ZhZDY1NTAzZGEwMjY4YTQxMTIxNGNhMTM5
11
- MGYyNzA0YTdmZjE3Y2M3OGVjZGQxMTMxMDdmMzljZmY5M2M5ZDU=
9
+ YjFiMTk4ZmY5ZWQyMGU4NGQ0YTE1NTBhNTU4M2Y3NGI4ZmE4Y2FkNjU3NWIy
10
+ OTNiZmRiMjhiOWNkMDczZWY1NGZjMTZlNTdjMWJjNDg2N2JkYzQyMWNmYmMx
11
+ ZjAxNmYxYmU3ZWIxZWNkMDhlYjE1NWQ0ZWRkNzU0NDA4MjBiMjA=
12
12
  data.tar.gz: !binary |-
13
- ZDMwZTliOTE5NzRhNDBkN2Q3NzkyNmQ0MzUwMmIzMGY4ODExNGY1MjI5YWNh
14
- M2JhN2U5ZDY4YTI4ZjZjZGVkNTUxNWZhMGM0MDI5MTc0OGYwNGM3OWJmMGRl
15
- NTIwNGZjMmNiNDg0YTgwYTY4MmRjNmEzMWVkNWY3ZDdkZTFiOTE=
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
 
@@ -11,7 +11,6 @@ require 'active_support/lazy_load_hooks'
11
11
  # Project
12
12
  #
13
13
 
14
- require 'metasploit/concern/engine'
15
14
  require 'metasploit/concern/version'
16
15
 
17
16
  # Shared namespace for metasploit gems; used in {https://github.com/rapid7/metasploit-concern metasploit-concern},
@@ -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 = 2
8
+ MINOR = 3
9
9
  # The patch number, scoped to the {MINOR} version number.
10
- PATCH = 1
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.2.1
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-09-16 00:00:00.000000000 Z
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: '0'
83
+ version: 1.3.1
84
84
  requirements: []
85
85
  rubyforge_project:
86
- rubygems_version: 2.2.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