metasploit-erd 2.0.4 → 4.0.0
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 +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.github/workflows/verify.yml +64 -0
- data/Gemfile +1 -7
- data/README.md +1 -1
- data/lib/metasploit/erd/entity/namespace.rb +2 -2
- data/lib/metasploit/erd/version.rb +1 -1
- data/metasploit-erd.gemspec +7 -8
- data/spec/metasploit/erd/relationship_spec.rb +1 -6
- data/spec/spec_helper.rb +1 -10
- data/spec/support/shared/contexts/active_record_base_connection.rb +2 -2
- data/spec/support/shared/contexts/active_record_base_descendants_cleaner.rb +8 -2
- metadata +95 -106
- metadata.gz.sig +0 -0
- data/.coveralls.yml +0 -1
- data/.travis.yml +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0cbc0c8942a56262c657c4999b6a41aef1c8d98178398e58c395340fb0572094
|
4
|
+
data.tar.gz: 911e2e4a3f8300a70ed7a89743d774c694f25b360009d63f8969ee8911e0430d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9aff92fe3185e89966f4f7ddda211704a12740f6abec91d4d2afe25417486b627a53d987f848583f48095eed355e03f86435348aa8bb4c2c066987a9e63207ef
|
7
|
+
data.tar.gz: bb38953c08d8ffd8a74355c71b464c0fd4a093e9d110e1356b77686dfea7f0751c271a60586cff1438f1acb9475bf2091673338d088db9a3437373a37d7a50c3
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
@@ -0,0 +1,64 @@
|
|
1
|
+
name: Verify
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- '*'
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- '*'
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
test:
|
13
|
+
runs-on: ubuntu-16.04
|
14
|
+
timeout-minutes: 40
|
15
|
+
|
16
|
+
strategy:
|
17
|
+
fail-fast: true
|
18
|
+
matrix:
|
19
|
+
ruby:
|
20
|
+
- 2.5
|
21
|
+
- 2.6
|
22
|
+
- 2.7
|
23
|
+
|
24
|
+
env:
|
25
|
+
RAILS_ENV: test
|
26
|
+
|
27
|
+
name: Ruby ${{ matrix.ruby }}
|
28
|
+
steps:
|
29
|
+
- name: Install system dependencies
|
30
|
+
run: sudo apt-get install graphviz
|
31
|
+
|
32
|
+
- name: Checkout code
|
33
|
+
uses: actions/checkout@v2
|
34
|
+
|
35
|
+
- uses: actions/setup-ruby@v1
|
36
|
+
with:
|
37
|
+
ruby-version: ${{ matrix.ruby }}
|
38
|
+
|
39
|
+
- name: Setup bundler
|
40
|
+
run: |
|
41
|
+
gem install bundler
|
42
|
+
- uses: actions/cache@v2
|
43
|
+
with:
|
44
|
+
path: vendor/bundle
|
45
|
+
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
46
|
+
restore-keys: |
|
47
|
+
${{ runner.os }}-gems-
|
48
|
+
- name: Bundle install
|
49
|
+
run: |
|
50
|
+
bundle config path vendor/bundle
|
51
|
+
bundle install --jobs 4 --retry 3
|
52
|
+
|
53
|
+
- name: Test
|
54
|
+
run: |
|
55
|
+
bundle exec rake spec
|
56
|
+
bundle exec rake yard
|
57
|
+
|
58
|
+
- name: Upload coverage report
|
59
|
+
uses: actions/upload-artifact@v2
|
60
|
+
with:
|
61
|
+
name: coverage-${{ matrix.ruby }}
|
62
|
+
path: |
|
63
|
+
coverage/
|
64
|
+
retention-days: 1
|
data/Gemfile
CHANGED
@@ -8,16 +8,10 @@ group :development do
|
|
8
8
|
gem 'kramdown', platforms: :jruby
|
9
9
|
# markdown formatting for yard
|
10
10
|
gem 'redcarpet', platforms: :ruby
|
11
|
-
|
12
|
-
# 0.8.7.4 has a bug where setters are not documented when @!attribute is used
|
13
|
-
gem 'yard', '< 0.8.7.4'
|
11
|
+
gem 'yard'
|
14
12
|
end
|
15
13
|
|
16
14
|
group :test do
|
17
|
-
# blank?
|
18
|
-
gem 'activesupport', '~> 4.2.6'
|
19
|
-
# Upload coverage reports to coveralls.io
|
20
|
-
gem 'coveralls', require: false
|
21
15
|
# code coverage of tests
|
22
16
|
gem 'simplecov', :require => false
|
23
17
|
# in-memory database for ActiveRecord association traversal
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Metasploit::ERD [](https://github.com/rapid7/metasploit-erd/actions/workflows/verify.yml)[](https://codeclimate.com/github/rapid7/metasploit-erd)[](https://coveralls.io/r/rapid7/metasploit-erd)[](https://gemnasium.com/rapid7/metasploit-erd)[](http://badge.fury.io/rb/metasploit-erd)
|
2
2
|
|
3
3
|
Traces the `belongs_to` associations on `ActiveRecord::Base.descendants` to find the minimum cluster in which all
|
4
4
|
foreign keys are fulfilled in the Entity-Relationship Diagram.'
|
@@ -31,7 +31,7 @@ class Metasploit::ERD::Entity::Namespace
|
|
31
31
|
# @return [Array<Class<ActiveRecord::Base>
|
32
32
|
def classes
|
33
33
|
ActiveRecord::Base.descendants.select { |klass|
|
34
|
-
klass.
|
34
|
+
klass.module_parents.any? { |parent|
|
35
35
|
parent.name == namespace_name
|
36
36
|
}
|
37
37
|
}
|
@@ -63,4 +63,4 @@ class Metasploit::ERD::Entity::Namespace
|
|
63
63
|
|
64
64
|
super(super_options)
|
65
65
|
end
|
66
|
-
end
|
66
|
+
end
|
data/metasploit-erd.gemspec
CHANGED
@@ -6,8 +6,8 @@ require 'metasploit/erd/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'metasploit-erd'
|
8
8
|
spec.version = Metasploit::ERD::VERSION
|
9
|
-
spec.authors = ['
|
10
|
-
spec.email = ['
|
9
|
+
spec.authors = ['Metasploit Hackers']
|
10
|
+
spec.email = ['msfdev@metasploit.com']
|
11
11
|
spec.summary = 'Extensions to rails-erd to find clusters of models to generate subdomains specific to each model'
|
12
12
|
spec.description = 'Traces the belongs_to associations on ActiveRecord::Base descendants to find the minimum ' \
|
13
13
|
'cluster in which all foreign keys are fulfilled in the Entity-Relationship Diagram.'
|
@@ -19,14 +19,13 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
20
|
spec.require_paths = ['lib']
|
21
21
|
|
22
|
-
spec.required_ruby_version = '>= 2.
|
22
|
+
spec.required_ruby_version = '>= 2.2.0'
|
23
23
|
|
24
|
-
spec.add_development_dependency 'bundler', '~> 1.5'
|
25
24
|
spec.add_development_dependency 'metasploit-yard'
|
26
25
|
spec.add_development_dependency 'rake'
|
27
|
-
spec.add_development_dependency 'rspec'
|
26
|
+
spec.add_development_dependency 'rspec'
|
28
27
|
|
29
|
-
spec.add_runtime_dependency 'activerecord', '~>
|
30
|
-
spec.add_runtime_dependency 'activesupport', '~>
|
31
|
-
spec.add_runtime_dependency 'rails-erd'
|
28
|
+
spec.add_runtime_dependency 'activerecord', '~> 6.0'
|
29
|
+
spec.add_runtime_dependency 'activesupport', '~> 6.0'
|
30
|
+
spec.add_runtime_dependency 'rails-erd'
|
32
31
|
end
|
@@ -124,13 +124,10 @@ RSpec.describe Metasploit::ERD::Relationship do
|
|
124
124
|
|
125
125
|
ActiveRecord::Migration.create_table :owners do |t|
|
126
126
|
t.references :thing
|
127
|
-
|
128
|
-
t.timestamp
|
129
127
|
end
|
130
128
|
|
131
129
|
things.each do |thing|
|
132
130
|
ActiveRecord::Migration.create_table thing.table_name do |t|
|
133
|
-
t.timestamp
|
134
131
|
end
|
135
132
|
end
|
136
133
|
end
|
@@ -210,8 +207,6 @@ RSpec.describe Metasploit::ERD::Relationship do
|
|
210
207
|
group_names.each do |group_name|
|
211
208
|
t.references group_name.underscore.to_sym
|
212
209
|
end
|
213
|
-
|
214
|
-
t.timestamp
|
215
210
|
end
|
216
211
|
|
217
212
|
polymorphics_by_group_name.each do |group_name, polymorphics|
|
@@ -241,4 +236,4 @@ RSpec.describe Metasploit::ERD::Relationship do
|
|
241
236
|
end
|
242
237
|
end
|
243
238
|
end
|
244
|
-
end
|
239
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -2,17 +2,8 @@ require 'bundler/setup'
|
|
2
2
|
|
3
3
|
# require before 'metasploit/erd' so coverage is shown for files required by 'metasploit/erd'
|
4
4
|
require 'simplecov'
|
5
|
-
require 'coveralls'
|
6
5
|
|
7
|
-
|
8
|
-
# # don't generate local report as it is inaccessible on travis-ci, which is why coveralls is being used.
|
9
|
-
# SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
10
|
-
# else
|
11
|
-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
|
12
|
-
# either generate the local report
|
13
|
-
SimpleCov::Formatter::HTMLFormatter
|
14
|
-
)
|
15
|
-
# end
|
6
|
+
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
|
16
7
|
|
17
8
|
#
|
18
9
|
# Project
|
@@ -6,6 +6,12 @@ RSpec.shared_context 'ActiveRecord::Base.descendants cleaner' do
|
|
6
6
|
after(:example) do
|
7
7
|
# `ActiveSupport::DescendantsTracker.clear` will not clear ActiveRecord::Base subclasses because
|
8
8
|
# ActiveSupport::Dependencies is loaded
|
9
|
-
ActiveRecord::
|
9
|
+
if ActiveRecord.version >= Gem::Version.new("6.0.0.rc1")
|
10
|
+
cv = ActiveSupport::DescendantsTracker.class_variable_get(:@@direct_descendants)
|
11
|
+
cv.delete(ActiveRecord::Base)
|
12
|
+
ActiveSupport::DescendantsTracker.class_variable_set(:@@direct_descendants, cv)
|
13
|
+
else
|
14
|
+
ActiveRecord::Base.direct_descendants.clear
|
15
|
+
end
|
10
16
|
end
|
11
|
-
end
|
17
|
+
end
|
metadata
CHANGED
@@ -1,109 +1,100 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metasploit-erd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Metasploit Hackers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
13
|
+
MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl
|
14
|
+
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
15
|
+
d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv
|
16
|
+
b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG
|
17
|
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl
|
18
|
+
cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi
|
19
|
+
MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c
|
20
|
+
JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP
|
21
|
+
mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+
|
22
|
+
wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4
|
23
|
+
VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/
|
24
|
+
AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB
|
25
|
+
AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW
|
26
|
+
BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun
|
27
|
+
pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC
|
28
|
+
dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf
|
29
|
+
fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm
|
30
|
+
NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx
|
31
|
+
H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe
|
32
|
+
+o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g==
|
32
33
|
-----END CERTIFICATE-----
|
33
34
|
- |
|
34
35
|
-----BEGIN CERTIFICATE-----
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
36
|
+
MIIFMDCCBBigAwIBAgIQBAkYG1/Vu2Z1U0O1b5VQCDANBgkqhkiG9w0BAQsFADBl
|
37
|
+
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
38
|
+
d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv
|
39
|
+
b3QgQ0EwHhcNMTMxMDIyMTIwMDAwWhcNMjgxMDIyMTIwMDAwWjByMQswCQYDVQQG
|
40
|
+
EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl
|
41
|
+
cnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQgQ29kZSBT
|
42
|
+
aWduaW5nIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+NOzHH8O
|
43
|
+
Ea9ndwfTCzFJGc/Q+0WZsTrbRPV/5aid2zLXcep2nQUut4/6kkPApfmJ1DcZ17aq
|
44
|
+
8JyGpdglrA55KDp+6dFn08b7KSfH03sjlOSRI5aQd4L5oYQjZhJUM1B0sSgmuyRp
|
45
|
+
wsJS8hRniolF1C2ho+mILCCVrhxKhwjfDPXiTWAYvqrEsq5wMWYzcT6scKKrzn/p
|
46
|
+
fMuSoeU7MRzP6vIK5Fe7SrXpdOYr/mzLfnQ5Ng2Q7+S1TqSp6moKq4TzrGdOtcT3
|
47
|
+
jNEgJSPrCGQ+UpbB8g8S9MWOD8Gi6CxR93O8vYWxYoNzQYIH5DiLanMg0A9kczye
|
48
|
+
n6Yzqf0Z3yWT0QIDAQABo4IBzTCCAckwEgYDVR0TAQH/BAgwBgEB/wIBADAOBgNV
|
49
|
+
HQ8BAf8EBAMCAYYwEwYDVR0lBAwwCgYIKwYBBQUHAwMweQYIKwYBBQUHAQEEbTBr
|
50
|
+
MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYBBQUH
|
51
|
+
MAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJ
|
52
|
+
RFJvb3RDQS5jcnQwgYEGA1UdHwR6MHgwOqA4oDaGNGh0dHA6Ly9jcmw0LmRpZ2lj
|
53
|
+
ZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RDQS5jcmwwOqA4oDaGNGh0dHA6
|
54
|
+
Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RDQS5jcmww
|
55
|
+
TwYDVR0gBEgwRjA4BgpghkgBhv1sAAIEMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8v
|
56
|
+
d3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCgYIYIZIAYb9bAMwHQYDVR0OBBYEFFrEuXsq
|
57
|
+
CqOl6nEDwGD5LfZldQ5YMB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6enIZ3zbcgP
|
58
|
+
MA0GCSqGSIb3DQEBCwUAA4IBAQA+7A1aJLPzItEVyCx8JSl2qB1dHC06GsTvMGHX
|
59
|
+
fgtg/cM9D8Svi/3vKt8gVTew4fbRknUPUbRupY5a4l4kgU4QpO4/cY5jDhNLrddf
|
60
|
+
RHnzNhQGivecRk5c/5CxGwcOkRX7uq+1UcKNJK4kxscnKqEpKBo6cSgCPC6Ro8Al
|
61
|
+
EeKcFEehemhor5unXCBc2XGxDI+7qPjFEmifz0DLQESlE/DmZAwlCEIysjaKJAL+
|
62
|
+
L3J+HNdJRZboWR3p+nRka7LrZkPas7CM1ekN3fYBIM6ZMWM9CBoYs4GbT8aTEAb8
|
63
|
+
B4H6i9r5gkn3Ym6hU/oSlBiFLpKR6mhsRDKyZqHnGKSaZFHv
|
60
64
|
-----END CERTIFICATE-----
|
61
65
|
- |
|
62
66
|
-----BEGIN CERTIFICATE-----
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
67
|
+
MIIFIzCCBAugAwIBAgIQCMePMbkSxvnPeJhYXIfaxzANBgkqhkiG9w0BAQsFADBy
|
68
|
+
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
69
|
+
d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQg
|
70
|
+
SUQgQ29kZSBTaWduaW5nIENBMB4XDTIwMTAwNzAwMDAwMFoXDTIzMTEwNjEyMDAw
|
71
|
+
MFowYDELMAkGA1UEBhMCVVMxFjAUBgNVBAgTDU1hc3NhY2h1c2V0dHMxDzANBgNV
|
72
|
+
BAcTBkJvc3RvbjETMBEGA1UEChMKUmFwaWQ3IExMQzETMBEGA1UEAxMKUmFwaWQ3
|
73
|
+
IExMQzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALNTz4zvAy7h/vQp
|
74
|
+
4dr1txXHlABAagkwYYwTMCtHs5PXsJITx/5SAjx5swuaLfze5kPBNF2YImvFlOXY
|
75
|
+
WaB+0PsOnXnaARsDZU683xFlj8izU6IN6VrAHzDLKFBzruJENrOJD/ikbEtbjO/q
|
76
|
+
gFbmS9J9v5ohG/pcRSS0t4ZPAwymf8eCp6QsvOKK/Aymp1RhlRaP8N6N5CIpkhz1
|
77
|
+
9p968iCE+DjOXVYxcWE+jE/7uB1dbgrXykNBujMSS3GULOvVEY28n6NCmrPlo23g
|
78
|
+
yRjYVJ2Vy14nBqnxDZ/yRIfWRVjWoT9TsAEbe9gY29oDpSCSs4wSmLQd5zGCpZ9h
|
79
|
+
r0HDFB8CAwEAAaOCAcUwggHBMB8GA1UdIwQYMBaAFFrEuXsqCqOl6nEDwGD5LfZl
|
80
|
+
dQ5YMB0GA1UdDgQWBBTLBL7DTwumVEKtdCdpHVYMXOFeDzAOBgNVHQ8BAf8EBAMC
|
81
|
+
B4AwEwYDVR0lBAwwCgYIKwYBBQUHAwMwdwYDVR0fBHAwbjA1oDOgMYYvaHR0cDov
|
82
|
+
L2NybDMuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJlZC1jcy1nMS5jcmwwNaAzoDGG
|
83
|
+
L2h0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWFzc3VyZWQtY3MtZzEuY3Js
|
84
|
+
MEwGA1UdIARFMEMwNwYJYIZIAYb9bAMBMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8v
|
85
|
+
d3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYGZ4EMAQQBMIGEBggrBgEFBQcBAQR4MHYw
|
86
|
+
JAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBOBggrBgEFBQcw
|
87
|
+
AoZCaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkFzc3Vy
|
88
|
+
ZWRJRENvZGVTaWduaW5nQ0EuY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEL
|
89
|
+
BQADggEBAN+GL5/myPWg7oH4mVrG7/OhXF1MoYQF0ddaNiqaweEHMuKJBQCVZRbL
|
90
|
+
37HojoKXXv2yyRJBCeTB+ojrxX+5PdLVZa0ss7toWzJ2A1poPXZ1eZvm5xeFD32z
|
91
|
+
YQaTmmNWNI3PCDTyJ2PXUc+bDiNNwcZ7yc5o78UNRvp9Jxghya17Q76c9Ov9wvnv
|
92
|
+
dxxQKWGOQy0m4fBrkyjAyH9Djjn81RbQrqYgPuhd5nD0HjN3VUQLhQbIJrk9TVs0
|
93
|
+
EknWpNgVhohbot1lfVAMmIhdtOVaRVcQQixWPwprDj/ydB8ryDMDosIMcw+fkoXU
|
94
|
+
9GJsSaSRRYQ9UUkVL27b64okU8D48m8=
|
90
95
|
-----END CERTIFICATE-----
|
91
|
-
date:
|
96
|
+
date: 2021-04-28 00:00:00.000000000 Z
|
92
97
|
dependencies:
|
93
|
-
- !ruby/object:Gem::Dependency
|
94
|
-
name: bundler
|
95
|
-
requirement: !ruby/object:Gem::Requirement
|
96
|
-
requirements:
|
97
|
-
- - "~>"
|
98
|
-
- !ruby/object:Gem::Version
|
99
|
-
version: '1.5'
|
100
|
-
type: :development
|
101
|
-
prerelease: false
|
102
|
-
version_requirements: !ruby/object:Gem::Requirement
|
103
|
-
requirements:
|
104
|
-
- - "~>"
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
version: '1.5'
|
107
98
|
- !ruby/object:Gem::Dependency
|
108
99
|
name: metasploit-yard
|
109
100
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,72 +127,71 @@ dependencies:
|
|
136
127
|
name: rspec
|
137
128
|
requirement: !ruby/object:Gem::Requirement
|
138
129
|
requirements:
|
139
|
-
- - "
|
130
|
+
- - ">="
|
140
131
|
- !ruby/object:Gem::Version
|
141
|
-
version: '
|
132
|
+
version: '0'
|
142
133
|
type: :development
|
143
134
|
prerelease: false
|
144
135
|
version_requirements: !ruby/object:Gem::Requirement
|
145
136
|
requirements:
|
146
|
-
- - "
|
137
|
+
- - ">="
|
147
138
|
- !ruby/object:Gem::Version
|
148
|
-
version: '
|
139
|
+
version: '0'
|
149
140
|
- !ruby/object:Gem::Dependency
|
150
141
|
name: activerecord
|
151
142
|
requirement: !ruby/object:Gem::Requirement
|
152
143
|
requirements:
|
153
144
|
- - "~>"
|
154
145
|
- !ruby/object:Gem::Version
|
155
|
-
version:
|
146
|
+
version: '6.0'
|
156
147
|
type: :runtime
|
157
148
|
prerelease: false
|
158
149
|
version_requirements: !ruby/object:Gem::Requirement
|
159
150
|
requirements:
|
160
151
|
- - "~>"
|
161
152
|
- !ruby/object:Gem::Version
|
162
|
-
version:
|
153
|
+
version: '6.0'
|
163
154
|
- !ruby/object:Gem::Dependency
|
164
155
|
name: activesupport
|
165
156
|
requirement: !ruby/object:Gem::Requirement
|
166
157
|
requirements:
|
167
158
|
- - "~>"
|
168
159
|
- !ruby/object:Gem::Version
|
169
|
-
version:
|
160
|
+
version: '6.0'
|
170
161
|
type: :runtime
|
171
162
|
prerelease: false
|
172
163
|
version_requirements: !ruby/object:Gem::Requirement
|
173
164
|
requirements:
|
174
165
|
- - "~>"
|
175
166
|
- !ruby/object:Gem::Version
|
176
|
-
version:
|
167
|
+
version: '6.0'
|
177
168
|
- !ruby/object:Gem::Dependency
|
178
169
|
name: rails-erd
|
179
170
|
requirement: !ruby/object:Gem::Requirement
|
180
171
|
requirements:
|
181
|
-
- - "
|
172
|
+
- - ">="
|
182
173
|
- !ruby/object:Gem::Version
|
183
|
-
version: '
|
174
|
+
version: '0'
|
184
175
|
type: :runtime
|
185
176
|
prerelease: false
|
186
177
|
version_requirements: !ruby/object:Gem::Requirement
|
187
178
|
requirements:
|
188
|
-
- - "
|
179
|
+
- - ">="
|
189
180
|
- !ruby/object:Gem::Version
|
190
|
-
version: '
|
181
|
+
version: '0'
|
191
182
|
description: Traces the belongs_to associations on ActiveRecord::Base descendants
|
192
183
|
to find the minimum cluster in which all foreign keys are fulfilled in the Entity-Relationship
|
193
184
|
Diagram.
|
194
185
|
email:
|
195
|
-
-
|
186
|
+
- msfdev@metasploit.com
|
196
187
|
executables: []
|
197
188
|
extensions: []
|
198
189
|
extra_rdoc_files: []
|
199
190
|
files:
|
200
|
-
- ".
|
191
|
+
- ".github/workflows/verify.yml"
|
201
192
|
- ".gitignore"
|
202
193
|
- ".rspec"
|
203
194
|
- ".simplecov"
|
204
|
-
- ".travis.yml"
|
205
195
|
- ".yardopts"
|
206
196
|
- CHANGELOG.md
|
207
197
|
- CONTRIBUTING.md
|
@@ -243,7 +233,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
243
233
|
requirements:
|
244
234
|
- - ">="
|
245
235
|
- !ruby/object:Gem::Version
|
246
|
-
version:
|
236
|
+
version: 2.2.0
|
247
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
248
238
|
requirements:
|
249
239
|
- - ">="
|
@@ -251,7 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
241
|
version: '0'
|
252
242
|
requirements: []
|
253
243
|
rubyforge_project:
|
254
|
-
rubygems_version: 2.
|
244
|
+
rubygems_version: 2.7.10
|
255
245
|
signing_key:
|
256
246
|
specification_version: 4
|
257
247
|
summary: Extensions to rails-erd to find clusters of models to generate subdomains
|
@@ -267,4 +257,3 @@ test_files:
|
|
267
257
|
- spec/support/shared/contexts/active_record_base_connection.rb
|
268
258
|
- spec/support/shared/contexts/active_record_base_descendants_cleaner.rb
|
269
259
|
- spec/support/shared/examples/metasploit/erd/clusterable.rb
|
270
|
-
has_rdoc:
|
metadata.gz.sig
CHANGED
Binary file
|
data/.coveralls.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
service_name: travis-ci
|