-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (40 loc) · 1.83 KB
/
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
46
47
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: ".ruby-version"
# Needs to be loaded first
gem "dotenv-rails" # Read .env files and make available in Rails
gem "bootsnap", require: false # Reduces boot times through caching; required in config/boot.rb
gem "bundler-audit"
gem "clearance" # Rails authentication with email & password.
gem "data_migrate" # Migrate data alongside schema
gem "flutie" # Flutie provides some utility view helpers for use with Rails applications.
gem "haml-rails" # Awesome templating engine
gem "jbuilder" # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "pagy" # The Ultimate Pagination Ruby Gem
gem "propshaft"
gem "importmap-rails", "~> 1.2"
gem "puma" # Use Puma as the app server
gem "rails", "~> 7.1"
gem "sqlite3", "~> 1.4" # Use sqlite3 as the database for Active Record
gem "symbol-fstring", require: "fstring/all" # Performance improvement
gem "redis", "~> 4.0" # Use Redis for Action Cable
gem "turbo-rails" # Turbo makes navigating your web application faster.
gem "stimulus-rails"
# BUGS
gem "psych", "< 4.0"
gem "rexml"
group :development, :test do
gem "debug", ">= 1.0.0"
end
group :development do
gem "rails-erd"
gem "listen"
gem "spring" # Spring speeds up development by keeping your application running in the background.
gem "spring-watcher-listen"
gem "web-console" # Access an interactive console on exception pages or by calling 'console' anywhere.
end
group :test do
gem "capybara" # Adds support for Capybara system testing and selenium driver
gem "selenium-webdriver"
gem "webdrivers" # Easy installation and use of web drivers to run system tests with browsers
end