-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
28 lines (22 loc) · 911 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "dotenv-rails", require: "dotenv/rails-now"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
rails_version = "~> 7.1"
gem "railties", rails_version
gem "actionpack", rails_version
gem "puma"
group :production do
gem "sd_notify" ## This is for systemd
end
gem "sidekiq"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem "capistrano-sidekiq", require: false, github: "seuros/capistrano-sidekiq"
gem "capistrano3-puma", require: false, github: "seuros/capistrano-puma"
end