@@ -51,7 +51,7 @@ gem "turbo-rails"
5151# Sprinkle a little JS to add interactivity
5252gem "stimulus-rails"
5353# Use JS import maps to manage JS without transpiling or bundling.
54- gem "importmap-rails" , "~> 2.1 "
54+ gem "importmap-rails" , "~> 2.2 "
5555
5656##### VIEWS/CONTROLLERS #####
5757
@@ -61,6 +61,8 @@ gem "filterrific"
6161gem "jbuilder"
6262# Pagination of models for use in views.
6363gem "kaminari"
64+ # Prevents cookie overflow errors when storing large flash messages.
65+ gem 'memflash'
6466# Web-based authorization framework.
6567gem "omniauth"
6668# Required to avoid authentication issues with Rails.
@@ -107,6 +109,9 @@ gem 'bootsnap', require: false
107109# specific versions for compatibility reasons.
108110gem "nokogiri" , ">= 1.10.4"
109111gem "sprockets" , "~> 4.2.2"
112+ gem "prawn" , "~> 2.4.0"
113+ gem "matrix" # Used by prawn
114+ gem "ttfunk" , "~>1.7.0"
110115
111116group :production , :staging do
112117 # Reduce the noise of logs and include custom fields to it for easier access
@@ -153,7 +158,7 @@ group :development, :test do
153158 # More concise test ("should") matchers
154159 gem "shoulda-matchers" , "~> 6.5"
155160 # Default rules for Rubocop.
156- gem "standard" , "~> 1.40 "
161+ gem "standard" , "~> 1.50 "
157162 gem "standard-rails"
158163 gem "standard-performance"
159164 # Erb linter.
0 commit comments