-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (30 loc) · 850 Bytes
/
Gemfile
File metadata and controls
37 lines (30 loc) · 850 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
37
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', "~> 8.1.1"
gem "webauthn", "~> 3.4"
gem 'bootsnap', '~> 1.23', require: false
gem 'importmap-rails', '~> 2.2'
gem 'propshaft', '~> 1.3'
gem 'puma', '~> 7.2'
gem "rollbar", "~> 3.7"
gem 'sqlite3', '>= 1.4'
gem 'stimulus-rails', '~> 1.3'
group :development, :deploy do
gem "kamal", '~> 2.11'
end
group :development, :test do
gem 'byebug', '~> 13.0', platforms: [:mri, :mingw, :x64_mingw]
gem 'rubocop', '~> 1.86', require: false
gem 'rubocop-rails', '~> 2.34', require: false
end
group :development do
gem "brakeman", '~> 8.0'
gem "bundler-audit", '~> 0.9.3'
gem "rack-mini-profiler", "~> 4.0"
gem 'web-console', '~> 4.3'
end
group :test do
gem 'capybara', '~> 3.26'
gem 'minitest-stub_any_instance', '~> 1.0'
gem 'selenium-webdriver', '~> 4.41'
end