more ar hacking

This commit is contained in:
Dylan Knutson
2025-07-14 05:44:01 +00:00
parent bb5c22b070
commit 30b017906f
9 changed files with 371 additions and 579 deletions

25
Gemfile
View File

@@ -5,16 +5,19 @@ source "https://rubygems.org"
# Specify your gem's dependencies in active-record-aux-table.gemspec
gemspec
gem "activerecord", "~> 7.2"
gem "sqlite3", "~> 1.4"
gem "irb"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.0"
gem "syntax_tree"
gem "lefthook", group: :development
gem "bundler-audit", group: :development
gem "sorbet-static-and-runtime"
gem "tapioca", require: false, group: %i[development test]
gem "pry", group: %i[development test]
group :development do
gem "bundler-audit"
gem "lefthook"
gem "tapioca"
end
group :development, :test do
gem "rspec", "~> 3.0"
gem "sorbet-static-and-runtime"
gem "sqlite3", "~> 1.4"
gem "syntax_tree"
gem "pry"
gem "debug"
end