metasploit-framework/Gemfile

56 lines
1.8 KiB
Ruby
Raw Normal View History

2013-09-20 01:06:48 +00: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 21:26:36 +00: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 16:48:50 +00:00
# Markdown formatting for yard
gem 'redcarpet'
# generating documentation
gem 'yard'
# for development and testing purposes
gem 'pry'
# module documentation
2017-04-06 20:36:02 +00:00
gem 'octokit'
# Metasploit::Aggregator external session proxy
2017-10-18 18:21:02 +00:00
gem 'metasploit-aggregator' if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin')) && \
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.5.0')
2018-02-28 16:31:17 +00:00
gem 'google-protobuf', "3.5.1" if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin')) && \
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.5.0')
2018-03-02 14:51:39 +00:00
gem 'grpc', "1.8.3" if [
'x86-mingw32', 'x64-mingw32',
'x86_64-linux', 'x86-linux',
'darwin'].include?(RUBY_PLATFORM.gsub(/.*darwin.*/, 'darwin')) && \
Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.5.0')
end
group :development, :test do
# automatically include factories from spec/factories
gem 'factory_bot_rails'
2013-11-26 16:48:50 +00:00
# Make rspec output shorter and more useful
gem 'fivemat'
2013-11-26 16:48:50 +00: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 19:02:32 +00:00
gem 'rspec-rerun'
end
group :test do
2013-11-26 16:48:50 +00:00
# Manipulate Time.now in specs
gem 'timecop'
end