2013-09-20 08:06:48 +07:00
|
|
|
source 'https://rubygems.org'
|
2014-06-02 13:03:07 -05:00
|
|
|
# Add default group gems to `metasploit-framework.gemspec`:
|
|
|
|
|
# spec.add_runtime_dependency '<name>', [<version requirements>]
|
2014-11-05 08:58:46 -06:00
|
|
|
gemspec name: 'metasploit-framework'
|
2014-10-29 16:26:36 -05:00
|
|
|
|
2014-12-05 11:58:09 -06:00
|
|
|
# separate from test as simplecov is not run on travis-ci
|
|
|
|
|
group :coverage do
|
|
|
|
|
# code coverage for tests
|
2020-03-10 14:52:03 -05:00
|
|
|
gem 'simplecov', '0.18.2'
|
2014-12-05 11:58:09 -06:00
|
|
|
end
|
|
|
|
|
|
2012-10-01 13:09:30 -05:00
|
|
|
group :development do
|
2013-11-26 10:48:50 -06:00
|
|
|
# Markdown formatting for yard
|
|
|
|
|
gem 'redcarpet'
|
|
|
|
|
# generating documentation
|
|
|
|
|
gem 'yard'
|
2014-06-18 11:47:36 -05:00
|
|
|
# for development and testing purposes
|
2023-01-05 18:55:39 -06:00
|
|
|
gem 'pry-byebug'
|
2022-08-31 16:52:50 -05:00
|
|
|
# Ruby Debugging Library - rebuilt and included by default from Ruby 3.1 onwards.
|
|
|
|
|
# Replaces the old lib/debug.rb and provides more features.
|
|
|
|
|
gem 'debug', '>= 1.0.0'
|
2016-02-16 22:44:03 -06:00
|
|
|
# module documentation
|
2017-04-06 15:36:02 -05:00
|
|
|
gem 'octokit'
|
2020-03-11 12:59:07 +00:00
|
|
|
# memory profiling
|
|
|
|
|
gem 'memory_profiler'
|
|
|
|
|
# cpu profiling
|
2021-02-19 08:42:28 -06:00
|
|
|
gem 'ruby-prof', '1.4.2'
|
2017-04-12 12:19:30 -05:00
|
|
|
# Metasploit::Aggregator external session proxy
|
2018-03-30 10:04:30 -05:00
|
|
|
# disabled during 2.5 transition until aggregator is available
|
2022-08-31 16:52:50 -05:00
|
|
|
# gem 'metasploit-aggregator'
|
2012-10-01 13:09:30 -05:00
|
|
|
end
|
2012-10-08 16:14:37 -05:00
|
|
|
|
|
|
|
|
group :development, :test do
|
2013-11-26 10:48:50 -06:00
|
|
|
# running documentation generation tasks and rspec tasks
|
2016-04-15 11:45:43 -05:00
|
|
|
gem 'rake'
|
2014-05-12 15:03:51 -05: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
|
2016-04-15 11:45:43 -05:00
|
|
|
gem 'rspec-rails'
|
2017-06-20 14:02:32 -05:00
|
|
|
gem 'rspec-rerun'
|
2023-08-15 13:24:59 +01:00
|
|
|
# Required during CI as well local development
|
2020-07-07 19:04:20 +01:00
|
|
|
gem 'rubocop'
|
2012-10-08 16:14:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
group :test do
|
2023-08-15 13:24:59 +01:00
|
|
|
# automatically include factories from spec/factories
|
|
|
|
|
gem 'test-prof'
|
|
|
|
|
gem 'factory_bot_rails'
|
|
|
|
|
# Make rspec output shorter and more useful
|
|
|
|
|
gem 'fivemat'
|
|
|
|
|
# rspec formatter for acceptance tests
|
|
|
|
|
gem 'allure-rspec'
|
2013-11-26 10:48:50 -06:00
|
|
|
# Manipulate Time.now in specs
|
|
|
|
|
gem 'timecop'
|
2012-10-08 16:14:37 -05:00
|
|
|
end
|
2024-01-08 15:21:08 -05:00
|
|
|
|