Files
metasploit-gs/Gemfile
T

60 lines
1.7 KiB
Ruby
Raw Normal View History

2012-04-15 23:35:38 -05:00
source 'http://rubygems.org'
2012-10-01 13:09:30 -05:00
2012-10-03 15:42:14 -05:00
# Need 3+ for ActiveSupport::Concern
gem 'activesupport', '>= 3.0.0'
2013-02-04 12:47:36 -06:00
# Needed for some admin modules (scrutinizer_add_user.rb)
gem 'json'
# Needed by msfgui and other rpc components
2013-02-04 12:41:38 -06:00
gem 'msgpack'
2013-02-04 12:47:36 -06:00
# Needed by anemone crawler
gem 'nokogiri'
# Needed by anemone crawler
gem 'robots'
2013-04-12 09:28:59 -05:00
group :db do
# Needed for Msf::DbManager
gem 'activerecord'
# Database models shared between framework and Pro.
2013-05-16 12:45:08 -05:00
gem 'metasploit_data_models', '~> 0.14.1'
# Needed for module caching in Mdm::ModuleDetails
gem 'pg', '>= 0.11'
2013-04-12 09:28:59 -05:00
end
group :pcap do
# For sniffer and raw socket modules
gem 'pcaprub'
2013-04-12 09:28:59 -05:00
end
2013-02-04 12:41:38 -06:00
2012-10-01 13:09:30 -05:00
group :development do
# Markdown formatting for yard
gem 'redcarpet'
# generating documentation
gem 'yard'
2012-10-01 13:09:30 -05:00
end
group :development, :test do
2013-04-01 16:06:40 -05:00
# supplies factories for producing model instance for specs
# 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'
# running documentation generation tasks and rspec tasks
gem 'rake'
end
group :test do
2013-04-01 16:06:40 -05: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'
# testing framework
gem 'rspec', '>= 2.12'
# add matchers from shoulda, such as query_the_database, which is useful for
# testing that the Msf::DBManager activation is respected.
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.
gem 'simplecov', '0.5.4', :require => false
2013-04-19 10:11:33 -05:00
# Manipulate Time.now in specs
gem 'timecop'
end