Skip to content
Closed
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
20 changes: 10 additions & 10 deletions app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.4.4"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.1.5", ">= 7.1.5.1"
gem "rails", "~> 7.2.0"

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
Expand All @@ -24,13 +24,13 @@ gem "puma", "~> 6.6.0"
gem "jsbundling-rails"

# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
gem "turbo-rails", ">= 2.0.12"

# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
gem "stimulus-rails", ">= 1.3.4"

# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails"
gem "cssbundling-rails", ">= 1.4.2"
gem "premailer-rails"

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
Expand Down Expand Up @@ -58,9 +58,9 @@ gem "device_detector"
gem "mixpanel-ruby"
gem "newrelic_rpm"

gem "solid_queue", ">= 0.3.0"
gem "solid_queue", ">= 1.2.0"
# dashboard to manage solid queue
gem "mission_control-jobs"
gem "mission_control-jobs", ">= 1.1.0"


gem "faraday", "~> 2.9.0"
Expand All @@ -84,13 +84,13 @@ gem "cgi", ">= 0.4.2" # Fixing GHSA-mhwm-jh88-3gjf

group :development, :test do
gem "brakeman"
gem "bundler-audit", "~> 0.9"
gem "bundler-audit", "~> 0.9", ">= 0.9.2"
gem "capybara"
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails", "~> 2.7"
gem "dotenv-rails", "~> 3.0", ">= 3.0.0"
gem "erb_lint", require: false
gem "i18n-tasks", "~> 1.0", require: false
gem "rspec-rails", "~> 6.1"
gem "i18n-tasks", "~> 1.0", ">= 1.0.15", require: false
gem "rspec-rails", "~> 6.1", ">= 6.1.4"
gem "rubocop"
gem "rubocop-rspec"
gem "rubocop-rails-omakase"
Expand Down
Loading