-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (37 loc) · 839 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
34
35
36
37
38
39
40
41
42
43
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
gem "devise"
gem "devise-i18n"
gem "font-awesome-rails"
gem "rails", "~> 7.0.4"
gem 'rails-i18n'
gem "rails_admin"
gem "mailjet"
gem "dotenv-rails"
gem "sprockets-rails"
gem "puma", "~> 5.0"
gem "jsbundling-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "cssbundling-rails"
gem "bootsnap", require: false
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
group :development, :test do
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem "rspec-rails"
gem "factory_bot_rails"
gem "shoulda-matchers"
gem "pg", "~> 1.1"
gem 'rails-controller-testing'
end
group :development do
gem "web-console"
end
group :test do
gem "capybara"
gem "launchy"
end
group :production do
gem "pg", "~> 1.1"
end