metasploit-erd 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1b3fb6433b636134b653872755b5e6f69f32ec8
4
- data.tar.gz: c9deb5d411e557128fb5474fb65ae56a1b96b2a7
3
+ metadata.gz: 515665c31ee79b69b0e35bd56ede9c34ceea61a4
4
+ data.tar.gz: 7c5643409f8587abeeba6f90b9a33ef7c246a76a
5
5
  SHA512:
6
- metadata.gz: b8e67ff6d302a371699429300bdbc5d2bec8c4a7f98275c78e997ebebde80486063b64454d3fca269d59acbcc1e780ed0d5debc9c37262a30226a233e5f5203b
7
- data.tar.gz: 3d8ccf139f3126f1a4b276922322960ecbead92b56395ab35a101db3cb55daa0424b00ecc8b65c8dfbb4745282b3613b23f1f586c5a63236ac6ed865c366a605
6
+ metadata.gz: a991568d9d5d4431228ff1b08779dbf7f2bb84637d173137a756356b2023b5c148f6fc8bb6ff9fc63d9aa9b6a2794e532961ee2e795b2c35d0aa3b1cbf9ef808
7
+ data.tar.gz: f3d4e5249f6842942eb287bdd1797c9cd0df1506e3759f7a6ddf3025df05ec483a85b62b57b0a8e4011fd2b0f3930c5ea87d569fcbb0e20936dd2e0e8434232b
@@ -0,0 +1 @@
1
+ I�,6��DŽa#F�O�2~���\B1�_v�G�}M��s"?w�c��X��~�[m�p��U��C3=� �h�؃M�B4���`F
Binary file
@@ -1,8 +1,12 @@
1
+ group: stable
2
+ sudo: false
3
+ addons:
4
+ apt:
5
+ packages:
6
+ - graphviz
1
7
  before_install:
2
- - sudo apt-get update -qq
3
- # graphviz is needed to specs that check that diagram create works
4
- - sudo apt-get install -qq graphviz
8
+ - gem update bundler
5
9
  language: ruby
6
10
  rvm:
7
- - 2.1
11
+ - 2.2
8
12
  script: bundle exec rake spec yard
data/Gemfile CHANGED
@@ -3,6 +3,8 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in metasploit-erd.gemspec
4
4
  gemspec
5
5
 
6
+ # gem 'metasploit-yard', github: 'rapid7/metasploit-yard', branch: 'staging/rails-upgrade'
7
+
6
8
  group :development do
7
9
  # markdown formatting for yard
8
10
  gem 'kramdown', platforms: :jruby
@@ -1,57 +1,16 @@
1
1
  module Metasploit
2
2
  module ERD
3
- # Holds components of {VERSION} as defined by {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0}.
4
- module Version
5
- #
6
- # CONSTANTS
7
- #
8
-
9
- # The major version number.
10
- MAJOR = 1
11
- # The minor version number, scoped to the {MAJOR} version number.
12
- MINOR = 0
13
- # The patch version number, scoped to the {MAJOR} and {MINOR} version numbers.
14
- PATCH = 0
15
-
16
- #
17
- # Module Methods
18
- #
19
-
20
- # The full version string, including the {Metasploit::ERD::Version::MAJOR},
21
- # {Metasploit::ERD::Version::MINOR}, {Metasploit::ERD::Version::PATCH}, and optionally, the
22
- # `Metasploit::ERD::Version::PRERELEASE` in the
23
- # {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
24
- #
25
- # @return [String] '{Metasploit::ERD::Version::MAJOR}.{Metasploit::ERD::Version::MINOR}.{Metasploit::ERD::Version::PATCH}'
26
- # on master. '{Metasploit::ERD::Version::MAJOR}.{Metasploit::ERD::Version::MINOR}.{Metasploit::ERD::Version::PATCH}-PRERELEASE'
27
- # on any branch other than master.
28
- def self.full
29
- version = "#{MAJOR}.#{MINOR}.#{PATCH}"
30
-
31
- if defined? PRERELEASE
32
- version = "#{version}-#{PRERELEASE}"
33
- end
34
-
35
- version
36
- end
37
-
38
- # The full gem version string, including the {Metasploit::ERD::Version::MAJOR},
39
- # {Metasploit::ERD::Version::MINOR}, {Metasploit::ERD::Version::PATCH}, and optionally, the
40
- # `Metasploit::ERD::Version::PRERELEASE` in the
41
- # {http://guides.rubygems.org/specification-reference/#version RubyGems versioning} format.
42
- #
43
- # @return [String] '{Metasploit::ERD::Version::MAJOR}.{Metasploit::ERD::Version::MINOR}.{Metasploit::ERD::Version::PATCH}'
44
- # on master. '{Metasploit::ERD::Version::MAJOR}.{Metasploit::ERD::Version::MINOR}.{Metasploit::ERD::Version::PATCH}.PRERELEASE'
45
- # on any branch other than master.
46
- def self.gem
47
- full.gsub('-', '.pre.')
48
- end
3
+ # VERSION is managed by GemRelease
4
+ VERSION = '1.1.0'
5
+
6
+ # @return [String]
7
+ #
8
+ # returns the VERSION
9
+ #
10
+
11
+ def self.version
12
+ VERSION
49
13
  end
50
-
51
- # (see Version.gem)
52
- GEM_VERSION = Version.gem
53
-
54
- # (see Version.full)
55
- VERSION = Version.full
14
+
56
15
  end
57
16
  end
@@ -5,7 +5,7 @@ require 'metasploit/erd/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'metasploit-erd'
8
- spec.version = Metasploit::ERD::GEM_VERSION
8
+ spec.version = Metasploit::ERD::VERSION
9
9
  spec.authors = ['Luke Imhoff']
10
10
  spec.email = ['luke_imhoff@rapid7.com']
11
11
  spec.summary = 'Extensions to rails-erd to find clusters of models to generate subdomains specific to each model'
@@ -22,11 +22,11 @@ Gem::Specification.new do |spec|
22
22
  spec.required_ruby_version = '>= 2.1'
23
23
 
24
24
  spec.add_development_dependency 'bundler', '~> 1.5'
25
- spec.add_development_dependency 'metasploit-version', '~> 0.1.3'
26
- spec.add_development_dependency 'metasploit-yard', '~> 1.0'
25
+ spec.add_development_dependency 'metasploit-yard' , '~> 1.1'
27
26
  spec.add_development_dependency 'rake', '~> 10.3'
28
27
  spec.add_development_dependency 'rspec', '~> 3.2'
29
-
28
+ # spec.add_development_dependency 'codeclimate-test-reporter'
29
+
30
30
  rails_version_constraints = ['>= 4.0.9', '< 4.1.0']
31
31
 
32
32
  spec.add_runtime_dependency 'activerecord', *rails_version_constraints
@@ -1,4 +1,14 @@
1
1
  RSpec.describe Metasploit::ERD do
2
- it_should_behave_like 'Metasploit::Version GEM_VERSION constant'
3
- it_should_behave_like 'Metasploit::Version VERSION constant'
2
+ context 'CONSTANTS' do
3
+ context 'VERSION' do
4
+ subject(:version) {
5
+ described_class::VERSION
6
+ }
7
+
8
+ it 'is Metasploit::ERD::Version.full' do
9
+ expect(version).to eq(Metasploit::ERD.version)
10
+ end
11
+ end
12
+ end
13
+
4
14
  end
@@ -21,7 +21,7 @@ RSpec.describe Metasploit::ERD::Cluster do
21
21
  # Callbacks
22
22
  #
23
23
 
24
- before(:each) do
24
+ before(:example) do
25
25
  a_class = Class.new(ActiveRecord::Base) {
26
26
  belongs_to :b,
27
27
  class_name: 'B',
@@ -98,7 +98,7 @@ RSpec.describe Metasploit::ERD::Cluster do
98
98
  # Callbacks
99
99
  #
100
100
 
101
- before(:each) do
101
+ before(:example) do
102
102
  stub_const('Superclass', superclass)
103
103
  stub_const('Subclass', subclass)
104
104
 
@@ -21,7 +21,7 @@ RSpec.describe Metasploit::ERD::Entity::Class do
21
21
  # Callbacks
22
22
  #
23
23
 
24
- before(:each) do
24
+ before(:example) do
25
25
  stub_const(klass_name, klass)
26
26
  end
27
27
 
@@ -56,7 +56,7 @@ RSpec.describe Metasploit::ERD::Entity::Class do
56
56
  # Callbacks
57
57
  #
58
58
 
59
- before(:each) do
59
+ before(:example) do
60
60
  target_name = self.target_name
61
61
 
62
62
  stub_const(target_name, target)
@@ -136,7 +136,7 @@ RSpec.describe Metasploit::ERD::Entity::Class do
136
136
  'HasManyTarget'
137
137
  end
138
138
 
139
- before(:each) do
139
+ before(:example) do
140
140
  belongs_to_target_name = self.belongs_to_target_name
141
141
  klass_name = self.klass_name
142
142
  has_many_target_name = self.has_many_target_name
@@ -32,7 +32,7 @@ RSpec.describe Metasploit::ERD::Entity::Namespace do
32
32
  # Callbacks
33
33
  #
34
34
 
35
- before(:each) do
35
+ before(:example) do
36
36
  stub_const(other_namespace_name, Module.new)
37
37
  stub_const(namespace_name, Module.new)
38
38
  end
@@ -82,7 +82,7 @@ RSpec.describe Metasploit::ERD::Entity::Namespace do
82
82
  # Callbacks
83
83
  #
84
84
 
85
- before(:each) do
85
+ before(:example) do
86
86
  stub_const(other_namespaced_child_name, Class.new(ActiveRecord::Base))
87
87
 
88
88
  stub_const(namespaced_child_name, Class.new(ActiveRecord::Base))
@@ -22,7 +22,7 @@ RSpec.describe Metasploit::ERD::Relationship do
22
22
  # Callbacks
23
23
  #
24
24
 
25
- before(:each) do
25
+ before(:example) do
26
26
  stub_const(owner_name, owner)
27
27
  end
28
28
 
@@ -49,7 +49,7 @@ RSpec.describe Metasploit::ERD::Relationship do
49
49
  # Callbacks
50
50
  #
51
51
 
52
- before(:each) do
52
+ before(:example) do
53
53
  stub_const(klass_name, klass)
54
54
 
55
55
  owner.belongs_to :klass,
@@ -113,7 +113,7 @@ RSpec.describe Metasploit::ERD::Relationship do
113
113
  # Callbacks
114
114
  #
115
115
 
116
- before(:each) do
116
+ before(:example) do
117
117
  owner.belongs_to :thing,
118
118
  polymorphic: true
119
119
 
@@ -198,7 +198,7 @@ RSpec.describe Metasploit::ERD::Relationship do
198
198
  # Callbacks
199
199
  #
200
200
 
201
- before(:each) do
201
+ before(:example) do
202
202
  group_names.each do |group_name|
203
203
  owner.belongs_to group_name.underscore.to_sym,
204
204
  polymorphic: true
@@ -4,21 +4,15 @@ require 'bundler/setup'
4
4
  require 'simplecov'
5
5
  require 'coveralls'
6
6
 
7
- if ENV['TRAVIS'] == 'true'
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
7
+ # if ENV['TRAVIS'] == 'true'
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
11
  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
12
12
  # either generate the local report
13
13
  SimpleCov::Formatter::HTMLFormatter
14
14
  ]
15
- end
16
-
17
- #
18
- # Gems
19
- #
20
-
21
- require 'metasploit/version'
15
+ # end
22
16
 
23
17
  #
24
18
  # Project
@@ -29,10 +23,6 @@ require 'metasploit/erd'
29
23
  roots = []
30
24
  roots << Pathname.new(__FILE__).realpath.parent.parent.to_path
31
25
 
32
- # Use find_all_by_name instead of find_by_name as find_all_by_name will return pre-release versions
33
- gem_specification = Gem::Specification.find_all_by_name('metasploit-version').first
34
- roots << gem_specification.gem_dir
35
-
36
26
  roots.each do |root|
37
27
  Dir[File.join(root, 'spec', 'support', '**', '*.rb')].each do |f|
38
28
  require f
@@ -1,12 +1,12 @@
1
1
  RSpec.shared_context 'ActiveRecord::Base connection' do
2
- before(:each) do
2
+ before(:example) do
3
3
  ActiveRecord::Base.establish_connection(
4
4
  adapter: 'sqlite3',
5
5
  database: ':memory:'
6
6
  )
7
7
  end
8
8
 
9
- after(:each) do
9
+ after(:example) do
10
10
  ActiveRecord::Base.connection.disconnect!
11
11
  end
12
12
  end
@@ -1,9 +1,9 @@
1
1
  RSpec.shared_context 'ActiveRecord::Base.descendants cleaner' do
2
- before(:each) do
2
+ before(:example) do
3
3
  expect(ActiveRecord::Base.direct_descendants).to be_empty
4
4
  end
5
5
 
6
- after(:each) do
6
+ after(:example) do
7
7
  # `ActiveSupport::DescendantsTracker.clear` will not clear ActiveRecord::Base subclasses because
8
8
  # ActiveSupport::Dependencies is loaded
9
9
  ActiveRecord::Base.direct_descendants.clear
@@ -51,7 +51,7 @@ RSpec.shared_examples_for 'Metasploit::ERD::Clusterable' do
51
51
  # Callbacks
52
52
  #
53
53
 
54
- before(:each) do
54
+ before(:example) do
55
55
  migrate
56
56
 
57
57
  stub_const('Dummy', dummy_module)
@@ -99,19 +99,19 @@ RSpec.shared_examples_for 'Metasploit::ERD::Clusterable' do
99
99
  # Callbacks
100
100
  #
101
101
 
102
- before(:each) do
102
+ before(:example) do
103
103
  if directory.exist?
104
104
  directory.rmtree
105
105
  end
106
106
  end
107
107
 
108
- after(:each) do
108
+ after(:example) do
109
109
  directory.rmtree
110
110
  end
111
111
 
112
112
  context 'directory' do
113
113
  context 'with existing' do
114
- before(:each) do
114
+ before(:example) do
115
115
  directory.mkpath
116
116
  end
117
117
 
metadata CHANGED
@@ -1,14 +1,91 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metasploit-erd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luke Imhoff
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
- date: 2015-05-11 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG
14
+ A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv
15
+ b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw
16
+ MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i
17
+ YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT
18
+ aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ
19
+ jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp
20
+ xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp
21
+ 1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG
22
+ snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ
23
+ U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8
24
+ 9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E
25
+ BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B
26
+ AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz
27
+ yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE
28
+ 38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP
29
+ AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad
30
+ DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME
31
+ HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A==
32
+ -----END CERTIFICATE-----
33
+ - |
34
+ -----BEGIN CERTIFICATE-----
35
+ MIIEKDCCAxCgAwIBAgILBAAAAAABL07hNVwwDQYJKoZIhvcNAQEFBQAwVzELMAkG
36
+ A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv
37
+ b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xMTA0MTMxMDAw
38
+ MDBaFw0xOTA0MTMxMDAwMDBaMFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i
39
+ YWxTaWduIG52LXNhMScwJQYDVQQDEx5HbG9iYWxTaWduIENvZGVTaWduaW5nIENB
40
+ IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCyTxTnEL7XJnKr
41
+ NpfvU79ChF5Y0Yoo/ENGb34oRFALdV0A1zwKRJ4gaqT3RUo3YKNuPxL6bfq2RsNq
42
+ o7gMJygCVyjRUPdhOVW4w+ElhlI8vwUd17Oa+JokMUnVoqni05GrPjxz7/Yp8cg1
43
+ 0DB7f06SpQaPh+LO9cFjZqwYaSrBXrta6G6V/zuAYp2Zx8cvZtX9YhqCVVrG+kB3
44
+ jskwPBvw8jW4bFmc/enWyrRAHvcEytFnqXTjpQhU2YM1O46MIwx1tt6GSp4aPgpQ
45
+ STic0qiQv5j6yIwrJxF+KvvO3qmuOJMi+qbs+1xhdsNE1swMfi9tBoCidEC7tx/0
46
+ O9dzVB/zAgMBAAGjgfowgfcwDgYDVR0PAQH/BAQDAgEGMBIGA1UdEwEB/wQIMAYB
47
+ Af8CAQAwHQYDVR0OBBYEFAhu2Lacir/tPtfDdF3MgB+oL1B6MEcGA1UdIARAMD4w
48
+ PAYEVR0gADA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNv
49
+ bS9yZXBvc2l0b3J5LzAzBgNVHR8ELDAqMCigJqAkhiJodHRwOi8vY3JsLmdsb2Jh
50
+ bHNpZ24ubmV0L3Jvb3QuY3JsMBMGA1UdJQQMMAoGCCsGAQUFBwMDMB8GA1UdIwQY
51
+ MBaAFGB7ZhpFDZfKiVAvfQTNNKj//P1LMA0GCSqGSIb3DQEBBQUAA4IBAQAiXMXd
52
+ PfQLcNjj9efFjgkBu7GWNlxaB63HqERJUSV6rg2kGTuSnM+5Qia7O2yX58fOEW1o
53
+ kdqNbfFTTVQ4jGHzyIJ2ab6BMgsxw2zJniAKWC/wSP5+SAeq10NYlHNUBDGpeA07
54
+ jLBwwT1+170vKsPi9Y8MkNxrpci+aF5dbfh40r5JlR4VeAiR+zTIvoStvODG3Rjb
55
+ 88rwe8IUPBi4A7qVPiEeP2Bpen9qA56NSvnwKCwwhF7sJnJCsW3LZMMSjNaES2dB
56
+ fLEDF3gJ462otpYtpH6AA0+I98FrWkYVzSwZi9hwnOUtSYhgcqikGVJwQ17a1kYD
57
+ sGgOJO9K9gslJO8k
58
+ -----END CERTIFICATE-----
59
+ - |
60
+ -----BEGIN CERTIFICATE-----
61
+ MIIEyjCCA7KgAwIBAgISESEyE8rNriS4+1dc8jOHEUL8MA0GCSqGSIb3DQEBBQUA
62
+ MFExCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMScwJQYD
63
+ VQQDEx5HbG9iYWxTaWduIENvZGVTaWduaW5nIENBIC0gRzIwHhcNMTMxMDExMTUx
64
+ NTM4WhcNMTYxMDExMTUxNTM4WjBgMQswCQYDVQQGEwJVUzEWMBQGA1UECBMNTWFz
65
+ c2FjaHVzZXR0czEPMA0GA1UEBxMGQm9zdG9uMRMwEQYDVQQKEwpSYXBpZDcgTExD
66
+ MRMwEQYDVQQDEwpSYXBpZDcgTExDMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
67
+ CgKCAQEAhD//7+739c69hssg0mD6CXgf2JkuWTcU81dgD7aKcoEPqU8e1FseBvDW
68
+ /Q5fNK2H2NgHV/Msn18zXuK0PkaJXqj/vDsuKB3Hq0BiR2AwyDdEw8K5MK5bgQc2
69
+ tmcVtEAejRoy1Uv5UyfaAYAxG6zsma3buV1fjnEAC3VouRg4+EX/f65H/a6srntK
70
+ 5Etp3D71k2f0oUl8dOqOmSsRJQQ5zSs4ktDvpjAmsvzoA+1svceLYU95mvQsIw2T
71
+ edpmibGMwGw/HmgV+YWBgF5UGvax6zbC2i6DF2YHnDfkNb8/1MEIaxOTAbJTazTK
72
+ 8laCQOyay6L1BNPQKjZBgOge8LZq1wIDAQABo4IBizCCAYcwDgYDVR0PAQH/BAQD
73
+ AgeAMEwGA1UdIARFMEMwQQYJKwYBBAGgMgEyMDQwMgYIKwYBBQUHAgEWJmh0dHBz
74
+ Oi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAkGA1UdEwQCMAAwEwYD
75
+ VR0lBAwwCgYIKwYBBQUHAwMwPgYDVR0fBDcwNTAzoDGgL4YtaHR0cDovL2NybC5n
76
+ bG9iYWxzaWduLmNvbS9ncy9nc2NvZGVzaWduZzIuY3JsMIGGBggrBgEFBQcBAQR6
77
+ MHgwQAYIKwYBBQUHMAKGNGh0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2Fj
78
+ ZXJ0L2dzY29kZXNpZ25nMi5jcnQwNAYIKwYBBQUHMAGGKGh0dHA6Ly9vY3NwMi5n
79
+ bG9iYWxzaWduLmNvbS9nc2NvZGVzaWduZzIwHQYDVR0OBBYEFE536JwFx9SpaEi3
80
+ w8pcq2GRFA5BMB8GA1UdIwQYMBaAFAhu2Lacir/tPtfDdF3MgB+oL1B6MA0GCSqG
81
+ SIb3DQEBBQUAA4IBAQAGpGXHtFLjTTivV+xQPwtZhfPuJ7f+VGTMSAAYWmfzyHXM
82
+ YMFYUWJzSFcuVR2YfxtbS45P7U5Qopd7jBQ0Ygk5h2a+B5nE4+UlhHj665d0zpYM
83
+ 1eWndMaO6WBOYnqtNyi8Dqqc1foKZDNHEDggYhGso7OIBunup+N4sPL9PwQ3eYe6
84
+ mUu8z0E4GXYViaMPOFkqaYnoYgf2L+7L5zKYT4h/NE/P7kj7EbduHgy/v/aAIrNl
85
+ 2SpuQH+SWteq3NXkAmFEEqvLJQ4sbptZt8OP8ghL3pVAvZNFmww/YVszSkShSzcg
86
+ QdihYCSEL2drS2cFd50jBeq71sxUtxbv82DUa2b+
87
+ -----END CERTIFICATE-----
88
+ date: 2016-03-04 00:00:00.000000000 Z
12
89
  dependencies:
13
90
  - !ruby/object:Gem::Dependency
14
91
  name: bundler
@@ -24,34 +101,20 @@ dependencies:
24
101
  - - "~>"
25
102
  - !ruby/object:Gem::Version
26
103
  version: '1.5'
27
- - !ruby/object:Gem::Dependency
28
- name: metasploit-version
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: 0.1.3
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: 0.1.3
41
104
  - !ruby/object:Gem::Dependency
42
105
  name: metasploit-yard
43
106
  requirement: !ruby/object:Gem::Requirement
44
107
  requirements:
45
108
  - - "~>"
46
109
  - !ruby/object:Gem::Version
47
- version: '1.0'
110
+ version: '1.1'
48
111
  type: :development
49
112
  prerelease: false
50
113
  version_requirements: !ruby/object:Gem::Requirement
51
114
  requirements:
52
115
  - - "~>"
53
116
  - !ruby/object:Gem::Version
54
- version: '1.0'
117
+ version: '1.1'
55
118
  - !ruby/object:Gem::Dependency
56
119
  name: rake
57
120
  requirement: !ruby/object:Gem::Requirement
@@ -167,7 +230,6 @@ files:
167
230
  - lib/metasploit/erd/relationship.rb
168
231
  - lib/metasploit/erd/version.rb
169
232
  - metasploit-erd.gemspec
170
- - spec/lib/metasploit/erd/version_spec.rb
171
233
  - spec/lib/metasploit/erd_spec.rb
172
234
  - spec/metasploit/erd/cluster_spec.rb
173
235
  - spec/metasploit/erd/diagram_spec.rb
@@ -198,13 +260,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
260
  version: '0'
199
261
  requirements: []
200
262
  rubyforge_project:
201
- rubygems_version: 2.4.3
263
+ rubygems_version: 2.4.8
202
264
  signing_key:
203
265
  specification_version: 4
204
266
  summary: Extensions to rails-erd to find clusters of models to generate subdomains
205
267
  specific to each model
206
268
  test_files:
207
- - spec/lib/metasploit/erd/version_spec.rb
208
269
  - spec/lib/metasploit/erd_spec.rb
209
270
  - spec/metasploit/erd/cluster_spec.rb
210
271
  - spec/metasploit/erd/diagram_spec.rb
Binary file
@@ -1,3 +0,0 @@
1
- RSpec.describe Metasploit::ERD::Version do
2
- it_should_behave_like 'Metasploit::Version Version Module'
3
- end