mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
239e1934b8
[#44034071] metasploit_data_models version 0.5.0 copied the migrations from metasploit-framework/data/sql/migrate to metasploit_data_models/db/migrate so that specs could be written the Mdm models in metasploit_data_models. As part of the specs, :null => false columns that should be :null => true were discovered, so a new migration was added, but to metasploit_data_models/db/migrate, so it could be tested. Instead of replicating migrations back and forth, I'm removing the migrations completely from metasploit-framework and changing the default migration path in Msf::DbManager#migration_paths to MetasploitDataModels.root.join('db', 'migrate').
41 lines
1.1 KiB
Ruby
Executable File
41 lines
1.1 KiB
Ruby
Executable File
source 'http://rubygems.org'
|
|
|
|
# Need 3+ for ActiveSupport::Concern
|
|
gem 'activesupport', '>= 3.0.0'
|
|
# Needed for Msf::DbManager
|
|
gem 'activerecord'
|
|
# Needed for some admin modules (scrutinizer_add_user.rb)
|
|
gem 'json'
|
|
# Database models shared between framework and Pro.
|
|
gem 'metasploit_data_models', :git => 'git://github.com/rapid7/metasploit_data_models.git', :tag => '0.5.1'
|
|
# Needed by msfgui and other rpc components
|
|
gem 'msgpack'
|
|
# Needed by anemone crawler
|
|
gem 'nokogiri'
|
|
# Needed for module caching in Mdm::ModuleDetails
|
|
gem 'pg', '>= 0.11'
|
|
# Needed by anemone crawler
|
|
gem 'robots'
|
|
# For sniffer and raw socket modules
|
|
gem 'pcaprub'
|
|
|
|
group :development do
|
|
# Markdown formatting for yard
|
|
gem 'redcarpet'
|
|
# generating documentation
|
|
gem 'yard'
|
|
end
|
|
|
|
group :development, :test do
|
|
# running documentation generation tasks and rspec tasks
|
|
gem 'rake'
|
|
end
|
|
|
|
group :test do
|
|
# testing framework
|
|
gem 'rspec', '>= 2.12'
|
|
# code coverage for tests
|
|
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
|
|
gem 'simplecov', '0.5.4', :require => false
|
|
end
|