-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
54 lines (47 loc) · 1.09 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
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "~> 3.3"
gem "appsignal"
gem "async-http"
gem "aws-sdk-s3", "~> 1.14"
gem "bcrypt", "~> 3.1.7"
gem "bootsnap"
gem "exiftool"
gem "fastimage"
gem "geared_pagination"
gem "hiredis"
gem "image_processing", "~> 1.8"
gem "importmap-rails"
gem "kredis", "~> 1.2"
gem "pg", ">= 0.18", "< 2.0"
gem "propshaft"
gem "puma", ">= 5.0"
gem "rails", "~> 7.1"
gem "redis"
gem "rouge"
gem "rss"
gem "sitemap_generator"
gem "stimulus-rails"
gem "streamio-ffmpeg"
gem "tailwindcss-rails"
gem "turbo-rails"
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "faker"
end
group :development do
gem "listen"
gem "memory_profiler"
gem "kamal"
gem "rack-mini-profiler", require: %w[enable_rails_patches rack-mini-profiler]
gem "stackprof"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "axe-core-selenium"
gem "capybara", ">= 2.15"
gem "selenium-webdriver"
gem "webdrivers"
end
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]