-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
47 lines (41 loc) · 1.12 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.3"
gem "active_storage_validations"
gem "aws-sdk-s3"
gem "bootsnap", require: false
gem "cssbundling-rails"
gem "devise"
gem "devise-i18n"
gem "image_processing", "~> 1.0"
gem "jsbundling-rails"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "omniauth-github", github: "omniauth/omniauth-github", branch: "master"
gem "omniauth-google-oauth2"
gem "omniauth-vkontakte"
gem "pg", "~> 1.1"
gem "puma", "~> 5.0"
gem "pundit", "~> 2.3"
gem "rails", "~> 7.0.4"
gem "rails-i18n", "~> 7.0.0"
gem "resque"
gem "sprockets-rails"
gem "stimulus-rails"
gem "turbo-rails"
group :development do
gem "letter_opener"
end
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem "factory_bot_rails", "~> 6.2"
gem "rspec-rails", "~> 6.0.0"
gem "shoulda-matchers", "~> 5.0"
end
group :development do
gem "capistrano", "~> 3.11"
gem "capistrano-passenger", "~> 0.2.0"
gem "capistrano-rails", "~> 1.4"
gem "capistrano-rbenv", "~> 2.1", ">= 2.1.4"
gem "capistrano-resque", "~> 0.2.3", require: false
end