-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (30 loc) · 790 Bytes
/
Gemfile
File metadata and controls
36 lines (30 loc) · 790 Bytes
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
source "https://rubygems.org"
ruby "3.1.0"
gem "rails", "~> 7.1.0"
gem "railsui", github: "getrailsui/railsui", branch: "v2"
gem "sprockets-rails"
gem "pg"
gem "puma", ">= 5.0"
gem "turbo-rails"
gem "stimulus-rails"
gem "jbuilder"
gem "tzinfo-data", platforms: %i[ mswin mswin64 mingw x64_mingw jruby ]
gem "bootsnap", require: false
gem "image_processing", "~> 1.2"
group :development, :test do
gem "debug", platforms: %i[ mri mswin mswin64 mingw x64_mingw ]
end
group :development do
gem "web-console"
gem "rack-mini-profiler"
gem "error_highlight", ">= 0.4.0", platforms: [:ruby]
end
group :test do
gem "rspec-rails"
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers", "~> 5.3.0"
gem "factory_bot_rails"
gem "shoulda-matchers", "~> 5.0"
gem "faker"
end