2013-09-20 01:06:48 +00:00
|
|
|
source 'https://rubygems.org'
|
2012-10-01 18:09:30 +00:00
|
|
|
|
2012-10-03 20:42:14 +00:00
|
|
|
# Need 3+ for ActiveSupport::Concern
|
|
|
|
gem 'activesupport', '>= 3.0.0'
|
2013-02-04 18:47:36 +00:00
|
|
|
# Needed for some admin modules (scrutinizer_add_user.rb)
|
|
|
|
gem 'json'
|
|
|
|
# Needed by msfgui and other rpc components
|
2013-02-04 18:41:38 +00:00
|
|
|
gem 'msgpack'
|
2013-02-04 18:47:36 +00:00
|
|
|
# Needed by anemone crawler
|
|
|
|
gem 'nokogiri'
|
|
|
|
# Needed by anemone crawler
|
|
|
|
gem 'robots'
|
2013-06-10 19:18:05 +00:00
|
|
|
# Needed by db.rb and Msf::Exploit::Capture
|
2013-09-12 22:24:11 +00:00
|
|
|
gem 'packetfu', '1.1.9'
|
2013-04-12 14:28:59 +00:00
|
|
|
|
|
|
|
group :db do
|
2013-05-08 18:22:41 +00:00
|
|
|
# Needed for Msf::DbManager
|
|
|
|
gem 'activerecord'
|
|
|
|
# Database models shared between framework and Pro.
|
2013-07-17 16:46:08 +00:00
|
|
|
gem 'metasploit_data_models', '~> 0.16.6'
|
2013-05-08 18:22:41 +00:00
|
|
|
# Needed for module caching in Mdm::ModuleDetails
|
|
|
|
gem 'pg', '>= 0.11'
|
2013-04-12 14:28:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :pcap do
|
2013-07-10 18:25:02 +00:00
|
|
|
gem 'network_interface', '~> 0.0.1'
|
2013-05-08 18:22:41 +00:00
|
|
|
# For sniffer and raw socket modules
|
|
|
|
gem 'pcaprub'
|
2013-04-12 14:28:59 +00:00
|
|
|
end
|
2013-02-04 18:41:38 +00:00
|
|
|
|
2012-10-01 18:09:30 +00:00
|
|
|
group :development do
|
2013-05-08 18:22:41 +00:00
|
|
|
# Markdown formatting for yard
|
|
|
|
gem 'redcarpet'
|
|
|
|
# generating documentation
|
|
|
|
gem 'yard'
|
2012-10-01 18:09:30 +00:00
|
|
|
end
|
2012-10-08 21:14:37 +00:00
|
|
|
|
|
|
|
group :development, :test do
|
2013-04-01 21:06:40 +00:00
|
|
|
# supplies factories for producing model instance for specs
|
2013-05-08 18:22:41 +00:00
|
|
|
# Version 4.1.0 or newer is needed to support generate calls without the
|
|
|
|
# 'FactoryGirl.' in factory definitions syntax.
|
|
|
|
gem 'factory_girl', '>= 4.1.0'
|
2013-10-08 17:50:28 +00:00
|
|
|
# Make rspec output shorter and more useful
|
|
|
|
gem 'fivemat', '1.2.1'
|
2013-05-08 18:22:41 +00:00
|
|
|
# running documentation generation tasks and rspec tasks
|
2013-08-26 03:26:58 +00:00
|
|
|
gem 'rake', '>= 10.0.0'
|
2012-10-08 21:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
2013-04-01 21:06:40 +00:00
|
|
|
# Removes records from database created during tests. Can't use rspec-rails'
|
|
|
|
# transactional fixtures because multiple connections are in use so
|
|
|
|
# transactions won't work.
|
|
|
|
gem 'database_cleaner'
|
2013-05-08 18:22:41 +00:00
|
|
|
# testing framework
|
|
|
|
gem 'rspec', '>= 2.12'
|
|
|
|
gem 'shoulda-matchers'
|
|
|
|
# code coverage for tests
|
|
|
|
# any version newer than 0.5.4 gives an Encoding error when trying to read the source files.
|
2013-08-23 21:36:39 +00:00
|
|
|
# see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
|
2013-05-08 18:22:41 +00:00
|
|
|
gem 'simplecov', '0.5.4', :require => false
|
2013-04-19 15:11:33 +00:00
|
|
|
# Manipulate Time.now in specs
|
|
|
|
gem 'timecop'
|
2012-10-08 21:14:37 +00:00
|
|
|
end
|