-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (40 loc) · 1.03 KB
/
Gemfile
File metadata and controls
47 lines (40 loc) · 1.03 KB
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: ".ruby-version"
%w(railties activerecord actionpack).each do
gem it, "~> 8.1.0"
end
gem "sprockets-rails"
gem "puma"
gem "importmap-rails"
# gem "turbo-rails"
gem "stimulus-rails"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ windows jruby ]
gem "bootsnap", require: false
gem "minitest-mock"
gem "sqlite3"
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 :development do
gem "web-console"
end
group :test do
gem "capybara"
gem "selenium-webdriver"
end
# Custom
gem "bootstrap", "~> 5.1"
gem "sassc-rails", "~> 2.1"
gem "inline_svg", "~> 1.7"
gem "kramdown", "~> 2.3"
gem "kramdown-parser-gfm", "~> 1.1"
gem "rails-i18n"
gem "rouge", "~> 3.26"
gem "simple_form", "~> 5.1"
group :test, :development do
gem "diffy"
gem "equivalent-xml"
end