before redoing devcontainer files

This commit is contained in:
Dylan Knutson
2024-12-17 06:34:47 -08:00
parent 752b8c3b2c
commit aad2f29e96
36 changed files with 9857 additions and 826 deletions

124
Gemfile
View File

@@ -1,36 +1,36 @@
source "https://rubygems.org"
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.0"
ruby '3.2.0'
# ruby "3.0.3"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.4", ">= 7.0.4.2"
gem 'rails', '~> 7.0.4', '>= 7.0.4.2'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
gem 'sprockets-rails'
# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 1.4"
gem "pg"
gem 'pg'
gem 'sqlite3', '~> 1.4'
gem "pry"
gem "pry-stack_explorer"
gem 'pry'
gem 'pry-stack_explorer'
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"
gem 'puma', '~> 5.0'
# # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
# gem "importmap-rails"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
gem 'turbo-rails'
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
gem 'stimulus-rails'
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
# gem "redis", "~> 4.0"
@@ -42,10 +42,10 @@ gem "jbuilder"
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
gem 'bootsnap', require: false
# Use Sass to process CSS
# gem "sassc-rails"
@@ -55,79 +55,79 @@ gem "bootsnap", require: false
group :development, :test, :staging do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'debug', platforms: %i[mri mingw x64_mingw]
end
group :development, :staging do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
gem "htmlbeautifier"
gem "rails_live_reload"
gem "rufo", require: false
gem 'htmlbeautifier'
gem 'rails_live_reload'
gem 'rufo', require: false
gem 'web-console'
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
gem "rack-mini-profiler", require: ["enable_rails_patches", "rack-mini-profiler"]
gem "memory_profiler"
gem "stackprof"
gem 'memory_profiler'
gem 'rack-mini-profiler', require: %w[enable_rails_patches rack-mini-profiler]
gem 'stackprof'
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
gem "rspec-rails"
gem 'capybara'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'webdrivers'
end
gem "xdiff", path: "gems/xdiff-rb"
gem 'xdiff', path: '/gems/xdiff-rb'
# for legacy import
gem "diffy"
gem "rb-bsdiff", path: "gems/rb-bsdiff"
gem 'diffy'
gem 'rb-bsdiff', path: '/gems/rb-bsdiff'
gem "ruby-prof"
gem "ruby-prof-speedscope"
gem "table_print"
gem "addressable"
gem "nokogiri"
gem "http-cookie"
gem "curb"
gem "kaminari"
gem "colorize"
gem "daemons"
gem "ripcord"
gem "discard"
gem "influxdb-client"
gem "concurrent-ruby-ext", require: "concurrent"
gem "concurrent-ruby-edge", require: "concurrent-edge"
gem "pluck_each"
gem "good_job", "3.17.2"
gem "zstd-ruby"
gem "ruby-vips"
gem "composite_primary_keys", "~> 14.0"
gem 'addressable'
gem 'colorize'
gem 'composite_primary_keys', '~> 14.0'
gem 'concurrent-ruby-edge', require: 'concurrent-edge'
gem 'concurrent-ruby-ext', require: 'concurrent'
gem 'curb'
gem 'daemons'
gem 'discard'
gem 'good_job', '3.17.2'
gem 'http-cookie'
gem 'influxdb-client'
gem 'kaminari'
gem 'nokogiri'
gem 'pluck_each'
gem 'ripcord'
gem 'ruby-prof'
gem 'ruby-prof-speedscope'
gem 'ruby-vips'
gem 'table_print'
gem 'zstd-ruby'
gem "pg_query", ">= 2"
gem "pghero", git: "https://github.com/dymk/pghero", ref: "e314f99"
gem 'pghero', git: 'https://github.com/dymk/pghero', ref: 'e314f99'
gem 'pg_query', '>= 2'
gem "neighbor"
gem "disco"
gem "faiss"
gem "progressbar"
gem 'disco'
gem 'faiss'
gem 'neighbor'
gem 'progressbar'
group :production, :staging do
gem "rails_semantic_logger"
gem 'rails_semantic_logger'
end
group :production do
gem "sd_notify"
gem 'sd_notify'
end
gem "tailwindcss-rails", "~> 2.0"
gem 'tailwindcss-rails', '~> 2.0'
gem "shakapacker"
gem "react_on_rails"
gem "rack-cors"
gem "sanitize"
gem 'rack-cors'
gem 'react_on_rails'
gem 'sanitize'
gem 'shakapacker'