-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (40 loc) · 1.04 KB
/
Gemfile
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
43
44
source "https://rubygems.org"
gem "rails", "~> 8.0"
gem "railties", "~> 8.0"
gem "activesupport", "~> 8.0"
gem "pg"
gem "httparty"
gem "vite_rails"
gem "sassc-rails"
gem "jsbundling-rails"
gem "terser"
gem "csv" # no longer default gem, but it's being loaded by a gem and throwing a warning
gem "ostruct" # no longer a default gem as of 3.3.6
group :development do
gem "puma"
gem "capistrano"
gem "capistrano-bundler"
gem "capistrano-rails"
gem "capistrano-rbenv"
gem "web-console"
gem "standard" # linter
gem "brakeman" # security analysis https://brakemanscanner.org/
gem "bundler-audit" # patch-level verification
end
group :development, :test do
gem "byebug"
gem "dotenv-rails"
gem "guard-rspec"
gem "pry-rails"
gem "rspec-rails"
gem "shoulda-matchers"
gem "spring"
gem "spring-commands-rspec"
gem "foreman"
end
group :test do
gem "simplecov"
gem "net-pop" # temporarily require to fix gem installation on circleci?
gem "net-protocol" # temporarily require to fix gem installation on circleci?
gem "webmock"
end