2013-09-20 03:06:48 +02:00
|
|
|
source 'https://rubygems.org'
|
2014-06-02 20:03:07 +02:00
|
|
|
# Add default group gems to `metasploit-framework.gemspec`:
|
|
|
|
# spec.add_runtime_dependency '<name>', [<version requirements>]
|
2014-11-05 15:58:46 +01:00
|
|
|
gemspec name: 'metasploit-framework'
|
2014-06-18 18:47:36 +02:00
|
|
|
|
2013-04-12 16:28:59 +02:00
|
|
|
group :db do
|
2014-11-05 15:58:46 +01:00
|
|
|
gemspec name: 'metasploit-framework-db'
|
2013-04-12 16:28:59 +02:00
|
|
|
end
|
|
|
|
|
2012-10-01 20:09:30 +02:00
|
|
|
group :development do
|
2013-11-26 17:48:50 +01:00
|
|
|
# Markdown formatting for yard
|
|
|
|
gem 'redcarpet'
|
|
|
|
# generating documentation
|
|
|
|
gem 'yard'
|
2014-06-18 18:47:36 +02:00
|
|
|
# for development and testing purposes
|
|
|
|
gem 'pry'
|
2012-10-01 20:09:30 +02:00
|
|
|
end
|
2012-10-08 23:14:37 +02:00
|
|
|
|
|
|
|
group :development, :test do
|
2013-11-26 17:48:50 +01: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'
|
2014-05-12 22:03:51 +02:00
|
|
|
# automatically include factories from spec/factories
|
|
|
|
gem 'factory_girl_rails'
|
2013-11-26 17:48:50 +01:00
|
|
|
# Make rspec output shorter and more useful
|
|
|
|
gem 'fivemat', '1.2.1'
|
|
|
|
# running documentation generation tasks and rspec tasks
|
|
|
|
gem 'rake', '>= 10.0.0'
|
2014-05-12 22:03:51 +02:00
|
|
|
# testing framework
|
2014-07-09 19:21:41 +02:00
|
|
|
gem 'rspec', '>= 2.12', '< 3.0.0'
|
2014-05-12 22:03:51 +02:00
|
|
|
# Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the
|
|
|
|
# environment is development
|
2014-10-02 20:29:50 +02:00
|
|
|
gem 'rspec-rails' , '>= 2.12', '< 3.0.0'
|
2012-10-08 23:14:37 +02:00
|
|
|
end
|
|
|
|
|
2014-05-09 20:47:00 +02:00
|
|
|
group :pcap do
|
2014-11-05 16:40:57 +01:00
|
|
|
gemspec name: 'metasploit-framework-pcap'
|
2014-05-09 20:47:00 +02:00
|
|
|
end
|
|
|
|
|
2012-10-08 23:14:37 +02:00
|
|
|
group :test do
|
2014-08-27 21:22:20 +02:00
|
|
|
# cucumber extension for testing command line applications, like msfconsole
|
|
|
|
gem 'aruba'
|
2014-08-27 21:10:04 +02:00
|
|
|
# cucumber + automatic database cleaning with database_cleaner
|
2014-09-11 22:47:42 +02:00
|
|
|
gem 'cucumber-rails', :require => false
|
2013-11-26 17:48:50 +01:00
|
|
|
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.
|
|
|
|
# see: https://github.com/colszowka/simplecov/issues/127 (hopefully fixed in 0.8.0)
|
|
|
|
gem 'simplecov', '0.5.4', :require => false
|
|
|
|
# Manipulate Time.now in specs
|
|
|
|
gem 'timecop'
|
2012-10-08 23:14:37 +02:00
|
|
|
end
|