metasploit-model 3.1.1 → 3.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d9c60bd7ee4b602e6ed7b8a9c3033284bc0b3521855f6f535462e95deae424f
4
- data.tar.gz: 1e2200bf21b4e5cca22cfad82bcaf64d1937cfc730463798893d37f8f14cc3d4
3
+ metadata.gz: 7282653b38429b72974d4f1c6a98c7023aeb85189aa1b929fcc1e1f0751b47b5
4
+ data.tar.gz: 07e615389202c882a355b8ac7f8776d45b99e846512d64b8355a3ae8f1e2e9f8
5
5
  SHA512:
6
- metadata.gz: 12f64d37690116152f6b281fdb4ba056a1546bf4647000c46fe925b39cbbb6ec1e1131d4422a51412681348bccaa4f4c235badb699ab768b57f4350b35253a98
7
- data.tar.gz: 94c577557b024cc6a0d5aef112bc85689170b67fb7fab6ecb95abc9cd17f636c379f8d1ff1ad77a32129ea331b1fd3678a7691febb649d504a5c54b167dfe5ee
6
+ metadata.gz: 1e6634c258bc4ae1d49200b5786e4962e5ceea839311d1cea2e66dd76a9e5eb96f05800122c74be18fd52b291c7ed23ade8e7637b6cff2890046298bc92f9b96
7
+ data.tar.gz: ac18802b7f7a78705f88fbff920c162da5b718394abc0d5e53a167f3d0bfb7e64fb59ddf6594ea39b25ce865ab2b75f26906001e923a8ea6c27c252ad2a3c2c0
Binary file
data.tar.gz.sig CHANGED
@@ -1 +1,2 @@
1
- �9#R ��қ=�M�����
1
+ �?���}�M=����g��1"V��)�A�X�yIQb�� T����,<��
2
+ �^y��.
@@ -1,7 +1,7 @@
1
1
  module Metasploit
2
2
  module Model
3
3
  # VERSION is managed by GemRelease
4
- VERSION = '3.1.1'
4
+ VERSION = '3.1.2'
5
5
 
6
6
  # @return [String]
7
7
  #
@@ -6,12 +6,14 @@ require 'metasploit/model/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'metasploit-model'
8
8
  spec.version = Metasploit::Model::VERSION
9
- spec.authors = ['Luke Imhoff']
10
- spec.email = ['luke_imhoff@rapid7.com']
9
+ spec.authors = ['Metasploit Hackers']
10
+ spec.email = ['msfdev@metasploit.com']
11
11
  spec.description = %q{Common code, such as validators and mixins, that are shared between ActiveModels in metasploit-framework and ActiveRecords in metasploit_data_models.}
12
12
  spec.summary = %q{Metasploit Model Mixins and Validators}
13
13
 
14
- spec.files = `git ls-files`.split($/)
14
+ spec.files = `git ls-files`.split($/).reject { |file|
15
+ file =~ /^bin/
16
+ }
15
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
16
18
  spec.require_paths = %w{app/models app/validators lib}
17
19
 
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metasploit-model
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
- - Luke Imhoff
7
+ - Metasploit Hackers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
@@ -210,7 +210,7 @@ dependencies:
210
210
  description: Common code, such as validators and mixins, that are shared between ActiveModels
211
211
  in metasploit-framework and ActiveRecords in metasploit_data_models.
212
212
  email:
213
- - luke_imhoff@rapid7.com
213
+ - msfdev@metasploit.com
214
214
  executables: []
215
215
  extensions: []
216
216
  extra_rdoc_files: []
@@ -268,7 +268,6 @@ files:
268
268
  - app/validators/nil_validator.rb
269
269
  - app/validators/parameters_validator.rb
270
270
  - app/validators/password_is_strong_validator.rb
271
- - bin/rails
272
271
  - config/locales/en.yml
273
272
  - lib/metasploit/model.rb
274
273
  - lib/metasploit/model/association.rb
metadata.gz.sig CHANGED
Binary file
data/bin/rails DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails gems
3
- # installed from the root of your application.
4
-
5
- ENGINE_ROOT = File.expand_path('..', __dir__)
6
- ENGINE_PATH = File.expand_path('../lib/metasploit/model/engine', __dir__)
7
- APP_PATH = File.expand_path('../test/dummy/config/application', __dir__)
8
-
9
- # Set up gems listed in the Gemfile.
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
11
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
12
-
13
- require 'rails/all'
14
- require 'rails/engine/commands'