-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathGemfile
45 lines (36 loc) · 862 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
44
45
source "https://rubygems.org"
# Rails
gem "rails", github: "rails/rails", branch: "main"
# Drivers
gem "pg", "~> 1.5"
gem "redis", ">= 4.0.1"
# Deployment
gem "puma", ">= 5.0"
gem "bootsnap", require: false
# Assets
gem "importmap-rails"
gem "propshaft"
gem "tailwindcss-rails"
# Hotwire
gem "stimulus-rails"
gem "turbo-rails"
# Other
gem "jbuilder"
gem "tzinfo-data", platforms: %i[ windows jruby ]
group :development, :test do
gem "debug", platforms: %i[ mri windows ]
gem "brakeman", require: false
gem "rubocop-rails-omakase", require: false
gem "dotenv-rails"
gem "erb_lint", require: false
end
group :development do
gem "web-console"
gem "hotwire-livereload"
gem "ruby-lsp-rails"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
end