-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
33 lines (28 loc) · 867 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
28
29
30
31
32
33
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.2.2"
gem "aasm", "~> 5.5"
gem "dotenv", "~> 2.8", ">= 2.8.1"
gem "dry-cli", "~> 1.0"
gem "dry-monitor", "~> 1.0", ">= 1.0.1"
gem "dry-system", "~> 1.0", ">= 1.0.1"
gem "puma", "~> 6.3", ">= 6.3.1"
gem "redis", "~> 5.0", ">= 5.0.7"
gem "sequel", "~> 5.72"
gem "sidekiq", "~> 7.1", ">= 7.1.2"
gem "sidekiq-cron", "~> 1.10", ">= 1.10.1"
gem "sinatra", "~> 3.1"
gem "sqlite3", "~> 1.6", ">= 1.6.4"
group :development do
gem "debug", "~> 1.8"
gem "rubocop", "~> 1.56", ">= 1.56.2", require: false
gem "rubocop-rspec", "~> 2.23", ">= 2.23.2", require: false
end
group :test do
gem "database_cleaner-sequel", "~> 2.0", ">= 2.0.2"
gem "factory_bot", "~> 6.3"
gem "httparty", "~> 0.21.0"
gem "rspec", "~> 3.12"
gem "simplecov", require: false
gem "webmock", "~> 3.19", ">= 3.19.1"
end