-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (24 loc) · 926 Bytes
/
Gemfile
File metadata and controls
32 lines (24 loc) · 926 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby file: ".ruby-version"
gem "rails", "~> 8.1.2"
gem "sqlite3"
gem "puma"
gem "sprockets-rails"
gem "cssbundling-rails", "1.4.2" # TODO: relax this dependency when rails/cssbundling-rails#169 will be fixed
gem "importmap-rails"
gem "activeadmin", "4.0.0.beta22" # github: "activeadmin/activeadmin", branch: "master"
gem "devise"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ windows jruby ]
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri windows ]
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "simplecov", require: false
gem "simplecov-cobertura", require: false
end