Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ source "https://rubygems.org"
ruby ENV["CUSTOM_RUBY_VERSION"] || "3.3.12" # heroku needs a specific ruby version in the Gemfile

gem "rake"
gem "rails", "~> 7.1.5.1"
gem "sprockets", "~> 3.7" # Sprockets 4.0 stops allowing us to add a proc to the config.assets.precompile array, which we currently use
gem "rails", "~> 8.1.3"
gem "sprockets", "~> 4.2" # Sprockets 4.0 stops allowing us to add a proc to the config.assets.precompile array, which we currently use

gem "rack", "~> 2.2.23"
gem "rack", "~> 3.2.6"

# https://stripe.com/docs/api
gem "stripe", "~> 5.0"
gem "stripe", "~> 13.5"

# json serialization
# https://github.com/nesquena/rabl
gem "rabl"

gem "jbuilder"

gem "puma", "~> 7.2"
gem "puma", "~> 8.0"

gem "kaminari"

Expand Down Expand Up @@ -81,7 +81,7 @@ gem "premailer-rails"
gem "table_print"

gem "rails-i18n" # For 4.0.x
gem "i18n-js", "~> 3.8" # i18n-js 4 is very different and doesn't work without some big changes
gem "i18n-js", "~> 4.2" # i18n-js 4 is very different and doesn't work without some big changes
gem "countries"

gem "rexml" # needed on Ruby 3
Expand Down Expand Up @@ -127,7 +127,7 @@ gem "sassc"
gem "sassc-rails"
gem "terser"

gem "config", "~> 2.0"
gem "config", "~> 5.6"
gem "dry-validation" # used only for config validation

group :production, :staging do
Expand Down
Loading
Loading