1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/Gemfile

53 lines
1.6 KiB
Ruby
Raw Normal View History

2013-09-20 03:06:48 +02:00
source 'https://rubygems.org'
# Add default group gems to `metasploit-framework.gemspec`:
# spec.add_runtime_dependency '<name>', [<version requirements>]
gemspec name: 'metasploit-framework'
2014-10-29 22:26:36 +01:00
# separate from test as simplecov is not run on travis-ci
group :coverage do
# code coverage for tests
gem 'simplecov'
end
group :development do
2013-11-26 17:48:50 +01:00
# Markdown formatting for yard
gem 'redcarpet'
# generating documentation
gem 'yard'
# for development and testing purposes
gem 'pry'
# module documentation
2017-04-06 22:36:02 +02:00
gem 'octokit'
# Metasploit::Aggregator external session proxy
2017-10-18 20:21:02 +02:00
gem 'metasploit-aggregator' if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin'))
2018-02-28 17:31:17 +01:00
gem 'google-protobuf', "3.5.1" if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin'))
2018-03-02 15:51:39 +01:00
gem 'grpc', "1.8.3" if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin'))
end
group :development, :test do
# 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'
2013-11-26 17:48:50 +01:00
# running documentation generation tasks and rspec tasks
gem 'rake'
# Define `rake spec`. Must be in development AND test so that its available by default as a rake test when the
# environment is development
gem 'rspec-rails'
2017-06-20 21:02:32 +02:00
gem 'rspec-rerun'
end
group :test do
2013-11-26 17:48:50 +01:00
# Manipulate Time.now in specs
gem 'timecop'
end