Skip to content

Commit

Permalink
update gemspec for new MDM dep
Browse files Browse the repository at this point in the history
MDM has mvoed to a new major version and we
need to pull that in as a desp

MSP-11643
  • Loading branch information
David Maloney authored and David Maloney committed Jan 16, 2015
1 parent 9b758f3 commit 1044cb8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/metasploit/credential/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Version
# The minor version number, scoped to the {MAJOR} version number.
MINOR = 13
# The patch number, scoped to the {MINOR} version number.
PATCH = 11
PATCH = 12

# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the {PRERELEASE} in the
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
Expand Down
2 changes: 1 addition & 1 deletion metasploit-credential.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
# patching inverse association in Mdm models.
s.add_runtime_dependency 'metasploit-concern', '~> 0.3.0'
# Various Metasploit::Credential records have associations to Mdm records
s.add_runtime_dependency 'metasploit_data_models', '~> 0.21.0'
s.add_runtime_dependency 'metasploit_data_models', '~> 0.22.1'
# Metasploit::Model::Search
s.add_runtime_dependency 'metasploit-model','~> 0.28.0'
s.add_runtime_dependency 'railties', '< 4.0.0'
Expand Down
9 changes: 9 additions & 0 deletions spec/dummy/db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3267,6 +3267,13 @@ CREATE INDEX index_notes_on_ntype ON notes USING btree (ntype);
CREATE INDEX index_refs_on_name ON refs USING btree (name);


--
-- Name: index_services_on_host_id_and_port_and_proto; Type: INDEX; Schema: public; Owner: -; Tablespace:
--

CREATE UNIQUE INDEX index_services_on_host_id_and_port_and_proto ON services USING btree (host_id, port, proto);


--
-- Name: index_services_on_name; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
Expand Down Expand Up @@ -3671,6 +3678,8 @@ INSERT INTO schema_migrations (version) VALUES ('20140922170030');

INSERT INTO schema_migrations (version) VALUES ('20150106201450');

INSERT INTO schema_migrations (version) VALUES ('20150112203945');

INSERT INTO schema_migrations (version) VALUES ('21');

INSERT INTO schema_migrations (version) VALUES ('22');
Expand Down

0 comments on commit 1044cb8

Please sign in to comment.