2021-09-26 14:51:13 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
source 'https://rubygems.org'
|
2021-09-26 14:31:38 -07:00
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
|
|
2021-11-29 14:32:36 -08:00
|
|
|
ruby '3.0.3'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'rails', '~> 7.0.0.alpha2'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Use postgresql as the database for Active Record
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'pg', '~> 1.1'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Use the Puma web server [https://github.com/puma/puma]
|
2021-10-13 05:19:25 +00:00
|
|
|
gem 'puma', '~> 5.5'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'importmap-rails', '>= 0.3.4'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'turbo-rails', '>= 0.7.11'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'stimulus-rails', '>= 0.4.0'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
|
2021-11-15 05:18:37 +00:00
|
|
|
gem 'jbuilder', '~> 2.11'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Use Redis adapter to run Action Cable in production
|
2021-10-18 05:21:14 +00:00
|
|
|
gem 'redis', '~> 4.5'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Reduces boot times through caching; required in config/boot.rb
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'bootsnap', '>= 1.4.4', require: false
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
|
|
|
|
|
# gem "bcrypt", "~> 3.1.7"
|
|
|
|
|
|
|
|
|
|
# Use Sass to process CSS
|
|
|
|
|
# gem "sassc-rails", "~> 2.1"
|
|
|
|
|
|
|
|
|
|
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
|
|
|
|
|
# gem "image_processing", "~> 1.2"
|
|
|
|
|
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'brakeman'
|
|
|
|
|
gem 'bundler-audit'
|
|
|
|
|
gem 'rubocop-rails'
|
2021-09-26 14:47:42 -07:00
|
|
|
|
2021-09-26 14:31:38 -07:00
|
|
|
group :development, :test do
|
|
|
|
|
# Start debugger with binding.b [https://github.com/ruby/debug]
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'debug', '>= 1.0.0', platforms: %i[mri mingw x64_mingw]
|
2021-09-26 14:56:42 -07:00
|
|
|
gem 'rspec-rails'
|
2021-09-26 15:01:51 -07:00
|
|
|
gem 'rubocop-rspec'
|
2021-09-26 14:31:38 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
|
# Use console on exceptions pages [https://github.com/rails/web-console]
|
2021-09-26 14:51:13 -07:00
|
|
|
gem 'web-console', '>= 4.1.0'
|
2021-09-26 14:31:38 -07:00
|
|
|
|
|
|
|
|
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
|
|
|
|
|
# gem "rack-mini-profiler", ">= 2.3.3"
|
2021-09-26 13:51:06 -07:00
|
|
|
|
2021-09-26 14:31:38 -07:00
|
|
|
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
|
|
|
|
|
# gem "spring"
|
|
|
|
|
end
|