source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 7.0.2' # Use Puma as the app server gem 'puma', '~> 4.1' # View components gem "view_component" # Separate dependency since Rails 7.0 gem 'sprockets-rails' # Allows custom JS build tasks to integrate with the asset pipeline gem 'cssbundling-rails' # 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. Read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.7' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use Active Model has_secure_password # gem 'bcrypt', '~> 3.1.7' # Configuration gem 'dotenv-rails' # Security gem 'lockbox' # Authentication gem 'warden' gem 'devise' gem 'devise_ldap_authenticatable' gem 'net-ldap' # Utilities gem "rqrcode", "~> 2.0" # HTTP requests gem 'faraday' # Background/scheduled jobs gem 'sidekiq' gem 'sidekiq-scheduler' group :development, :test do # Use sqlite3 as the database for Active Record gem 'sqlite3', '~> 1.4' gem 'rspec-rails' end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '~> 3.2' gem 'letter_opener' gem 'letter_opener_web' end group :test do gem 'factory_bot_rails' gem 'capybara' gem 'database_cleaner' gem 'webmock' end group :production do # Use postgresql as the database for Active Record gem 'pg', '~> 1.2.3' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]