# frozen_string_literal: true

source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

RAILS_VERSION = "~> 7.1.0"
gem "actionmailer", RAILS_VERSION
gem "actionpack", RAILS_VERSION
gem "activejob", RAILS_VERSION
gem "activerecord", RAILS_VERSION
gem "railties", RAILS_VERSION

gem "puma"
gem "sidekiq", path: ".."
gem "sqlite3", "~> 1.4"
gem "json"

gem "after_commit_everywhere"

gem "sidekiq-redis_info", path: "../examples/webui-ext"
