-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathGemfile
More file actions
40 lines (35 loc) · 985 Bytes
/
Gemfile
File metadata and controls
40 lines (35 loc) · 985 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "~> 3.4.0"
gem "activesupport", "~> 7.2"
gem "addressable", "~> 2.9"
gem "aws-sdk-guardduty", "~> 1.62"
gem "aws-sdk-inspector", "~> 1.44"
gem "aws-sdk-inspector2", "~> 1.10"
gem "faraday", "~> 2.14"
gem "faraday-multipart", "~> 1.2"
gem "faraday-retry", "~> 2.3"
gem "httparty", "~> 0.22"
gem "ipaddress", "~> 0.8"
gem "rest-client", "~> 2.1"
gem "rexml", "~> 3.4"
gem "ruby-limiter", "~> 2.2"
gem "sanitize", "~> 6.1"
gem "strscan", "~> 3.1"
gem "tty-pager", "~> 0.14"
group :development, :test do
gem "pry", "~> 0.14"
gem "pry-byebug", "~> 3.10"
gem "rspec", "~> 3.13"
gem "rubocop", "~> 1.69", require: false
gem "simplecov", "~> 0.22"
gem "simplecov-cobertura", "~> 3.1"
gem "solargraph", "~> 0.50", require: false
gem "timecop", "~> 0.9"
gem "vcr", "~> 6.3"
gem "webmock", "~> 3.24"
gem "yard", "~> 0.9", ">= 0.9.37"
end
group :test do
gem "rspec-github", "~> 2.4", require: false
end