-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
50 lines (43 loc) · 1.02 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.3.5"
gem "bootsnap", require: false
gem "cssbundling-rails"
gem "devise"
gem "dotenv"
gem "faker"
gem "importmap-rails"
gem "jbuilder"
gem "kaminari"
gem "pg", "~> 1.1"
gem "puma", ">= 5.0"
gem "rails", "~> 7.2.1"
gem "sprockets-rails"
gem "tzinfo-data", platforms: %i[windows jruby]
group :development, :test do
gem "brakeman", require: false
gem "debug", platforms: %i[mri windows mingw x64_mingw], require: "debug/prelude"
gem "dotenv-rails"
gem "factory_bot_rails"
gem "pry-byebug"
gem "pry-rails"
gem "rspec-rails", "~> 6.0"
gem "rubocop-rails-omakase", require: false
end
group :development do
gem "hotwire-livereload", "~> 1.2"
gem "letter_opener"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "rubocop-rspec_rails"
gem "web-console"
end
group :test do
gem "capybara"
gem "database_cleaner-active_record"
gem "email_spec"
gem "rails-controller-testing"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "webdrivers"
end