Files
baclight/Gemfile
T

95 lines
2.7 KiB
Ruby
Raw Normal View History

2021-09-26 14:51:13 -07:00
# frozen_string_literal: true
2021-12-16 09:29:00 -08:00
source "https://rubygems.org"
2021-09-26 14:31:38 -07:00
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2026-03-03 22:53:21 -05:00
ruby "3.4.8"
2021-09-26 14:31:38 -07:00
2023-09-30 09:57:54 -07:00
# Bundle edge Rails instead:
2024-05-30 20:33:19 -07:00
# gem "rails", github: "rails/rails", branch: "7-2-stable"
2024-10-31 05:48:04 +00:00
gem "rails", "~> 7.2"
2021-12-06 15:02:04 -08:00
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
2022-02-21 13:04:05 -08:00
gem "sprockets-rails"
2021-09-26 14:31:38 -07:00
# Use the Puma web server [https://github.com/puma/puma]
2024-11-25 05:25:59 +00:00
gem "puma", "~> 6.5"
2021-09-26 14:31:38 -07:00
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
2021-12-16 09:29:00 -08:00
gem "importmap-rails"
2021-09-26 14:31:38 -07:00
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
2021-12-16 09:29:00 -08:00
gem "turbo-rails"
2021-09-26 14:31:38 -07:00
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
2021-12-16 09:29:00 -08:00
gem "stimulus-rails"
2021-09-26 14:31:38 -07:00
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
2021-12-16 09:29:00 -08:00
gem "jbuilder"
2021-09-26 14:31:38 -07:00
# Use Redis adapter to run Action Cable in production
2025-11-24 08:22:44 -05:00
# gem "redis", "~> 5.3"
2021-12-06 15:02:04 -08:00
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
2021-09-26 14:31:38 -07:00
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
2025-11-24 08:22:44 -05:00
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
2021-09-26 14:31:38 -07:00
# Reduces boot times through caching; required in config/boot.rb
2021-12-16 09:29:00 -08:00
gem "bootsnap", require: false
2021-09-26 14:31:38 -07:00
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
2025-11-24 08:22:44 -05:00
# gem "image_processing", "~> 1.2"
2021-09-26 14:31:38 -07:00
group :development, :test do
2021-12-16 09:29:00 -08:00
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
2025-11-24 08:22:44 -05:00
# gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
2024-05-30 20:33:19 -07:00
# 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
gem "bundler-audit"
2021-12-16 09:29:00 -08:00
gem "rspec-rails"
2023-09-30 20:38:11 -07:00
gem "rubocop-rails"
2021-12-16 09:29:00 -08:00
gem "rubocop-rspec"
2021-09-26 14:31:38 -07:00
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
2021-12-16 09:29:00 -08:00
gem "web-console"
2021-09-26 14:31:38 -07:00
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
2021-12-16 09:29:00 -08:00
gem "rack-mini-profiler"
2025-11-24 08:22:44 -05:00
gem "pry-rails"
2021-12-16 09:29:00 -08:00
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
2021-09-26 14:31:38 -07:00
end
2025-11-24 08:22:44 -05:00
gem 'activerecord-sqlserver-adapter'
gem 'tiny_tds'
gem 'devise'
gem 'pundit'
gem "tailwindcss-rails"
gem 'docx'
gem 'httparty'
gem 'combine_pdf'
2026-04-15 08:12:47 -04:00
gem 'pdf-reader'
gem 'rails_icons'
2026-03-03 22:53:21 -05:00
gem 'fastimage'
2026-03-27 08:04:37 -04:00
gem 'rubyzip', require: 'zip'
2026-04-15 08:12:47 -04:00
gem "solid_queue"
gem 'image_processing'
gem 'whenever', require: false
gem 'amatch'