-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathGemfile
More file actions
35 lines (28 loc) · 1021 Bytes
/
Gemfile
File metadata and controls
35 lines (28 loc) · 1021 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "4.0.0"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 8"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
# Use Puma as the app server
gem "puma", ">= 5"
# Use SCSS for stylesheets
gem "sassc-rails"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier", ">= 1.3.0"
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby
gem "octicons_helper"
gem "slim"
gem "view_component"
gem "auto_preview", github: "joelhawksley/auto_preview", branch: "main"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.1.0"
gem "benchmark-ips"
group :development, :test do
gem "capybara", "~> 3"
gem "factory_bot_rails"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]