-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (33 loc) · 895 Bytes
/
Copy pathGemfile
File metadata and controls
42 lines (33 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true
source 'https://rubygems.org'
# Core Ruby libraries (required for Ruby 3.4+)
gem 'base64', '~> 0.2'
# Testing framework
gem 'rspec', '~> 3.13'
# Property-based testing
gem 'rantly', '~> 2.0'
# Development and code quality dependencies
group :development do
gem 'rubocop', '~> 1.60'
gem 'rubocop-performance', '~> 1.20'
gem 'reek', '~> 6.1'
gem 'flay', '~> 2.13'
gem 'flog', '~> 4.8'
gem 'yard', '~> 0.9'
end
# Security analysis tools
group :security do
gem 'brakeman', '~> 6.0'
gem 'bundler-audit', '~> 0.9'
end
# Testing utilities
group :test do
gem 'simplecov', '~> 0.22'
end
# Performance analysis
group :performance do
gem 'benchmark-ips', '~> 2.13'
gem 'memory_profiler', '~> 1.0'
end
# Note: In actual Metasploit usage, all dependencies are provided by the framework
# This Gemfile is only for standalone development and testing