Files
canine/Gemfile
2025-11-22 09:12:10 -08:00

119 lines
3.4 KiB
Ruby

source "https://rubygems.org"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.2.2"
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.6"
# Use the Puma web server [https://github.com/puma/puma]
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"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem "jbuilder"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ windows jruby ]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri windows ]
gem "simplecov", require: false
gem "pry", "~> 0.15.2"
gem "rspec-rails", "~> 8.0"
gem "factory_bot_rails"
gem "webmock"
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
gem "rubocop-rails-omakase", require: false
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "database_cleaner-active_record", '~> 2.2.2'
gem 'faker', '~> 3.5.2'
gem 'shoulda-matchers', '~> 6.5'
end
gem "cssbundling-rails"
gem "devise", "~> 4.9"
gem "friendly_id", "~> 5.4"
gem "jsbundling-rails"
gem "name_of_person", github: "basecamp/name_of_person"
gem "noticed", "~> 2.9"
gem "omniauth-github", "~> 2.0"
gem "pretender", "~> 0.6.0"
gem "pundit", "~> 2.5"
gem "good_job", "~> 4.12"
gem "sitemap_generator", "~> 6.1"
gem "responders", github: "heartcombo/responders", branch: "main"
gem "dotenv", "~> 3.1"
gem "image_processing", "~> 1.13"
gem "k8s-ruby", "~> 0.17.2"
gem "kubeclient", "~> 4.12"
gem "light-service", "~> 0.20.0"
gem "octokit", "~> 10.0"
gem "omniauth-digitalocean", "~> 0.3.2"
gem "pagy", "~> 9.4"
gem "oj", "~> 3.16"
gem "omniauth", "~> 2.1"
gem "omniauth-rails_csrf_protection", "~> 1.0"
gem "omniauth_openid_connect", "~> 0.8"
gem "annotate", "~> 3.2"
gem "rack", "~> 3.1"
gem "tailwindcss-rails", "~> 2.7"
gem "httparty", "~> 0.23.2"
gem "redcarpet", "~> 3.6"
gem "rubyzip", "~> 3.2"
gem "sassc-rails", "~> 2.1"
gem "cron2english", "~> 0.1.7"
gem "avo", "~> 3.25"
gem "sentry-ruby", "~> 5.28"
gem "sentry-rails", "~> 5.27"
gem "sys-proctable", "~> 1.3"
gem "omniauth-gitlab", "~> 4.1"
gem "actioncable-enhanced-postgresql-adapter", "~> 1.0"
gem 'flipper', '~> 1.2.2'
gem 'flipper-active_record', '~> 1.2.2'
gem 'flipper-ui', '~> 1.2.2'
gem "net-ldap", "~> 0.20.0"