-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (49 loc) · 1.17 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
gem "bootsnap", require: false
gem "carrierwave"
gem "cssbundling-rails"
gem "devise"
gem "devise-i18n"
gem "dotenv-rails"
gem "font-awesome-sass"
gem "jbuilder"
gem "jsbundling-rails"
gem "mailjet"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "omniauth-github", github: 'omniauth/omniauth-github', branch: 'master'
gem "omniauth-vkontakte"
gem "puma", "~> 5.0"
gem "pundit"
gem "rails-i18n"
gem "rails", "~> 7.0.4"
gem "resque"
gem "resque-web", require: "resque_web"
gem "rmagick"
gem "sprockets-rails"
gem "stimulus-rails"
gem "turbo-rails"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
group :development, :test do
gem "pg", "~> 1.1"
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem "rspec-rails"
gem "factory_bot_rails"
end
group :development do
gem "web-console"
gem "capistrano"
gem "capistrano-rails"
gem "capistrano-passenger"
gem "capistrano-rbenv"
gem "capistrano-bundler"
gem "capistrano-resque", require: false
gem "ed25519"
gem "bcrypt_pbkdf"
gem "letter_opener"
end
group :production do
gem "pg", "~> 1.1"
end