source 'https://rubygems.org' ruby '>= 3.2.0', '< 4.1.0' gem 'rails', '8.1.3.1' gem 'rouge', '~> 5.0' gem 'mini_mime', '~> 1.1.0' gem "actionpack-xml_parser" gem 'roadie-rails', '~> 3.4.0' gem 'marcel' gem 'mail', '~> 2.9.0' gem 'nokogiri', '~> 1.19.1' gem 'i18n', '~> 1.15.2' gem 'rbpdf', '~> 1.21.4' gem 'addressable' gem 'rubyzip', '~> 3.4.0' gem 'propshaft', '~> 1.3.0' gem 'rack', '>= 3.1.3' gem "stimulus-rails", "~> 1.3" gem "importmap-rails", "~> 2.0" gem 'commonmarker', '~> 2.8.2' gem "doorkeeper", "~> 5.8.2" gem "bcrypt", require: false gem "doorkeeper-i18n", "~> 5.2" gem "requestjs-rails", "~> 0.0.13" # Ruby Standard Gems gem 'csv', '~> 3.3.5' gem 'net-imap', '~> 0.6.1' gem 'net-pop', '~> 0.1.2' gem 'net-smtp', '~> 0.5.1' gem 'ostruct' # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] # TOTP-based 2-factor authentication gem 'rotp', '>= 5.0.0' gem 'rqrcode' # HTML sanitization gem "sanitize", "~> 7.0" # Optional gem for LDAP authentication group :ldap do gem 'net-ldap', '~> 0.20.0' end # Optional gem for exporting the gantt to a PNG file group :minimagick do gem 'mini_magick', '~> 5.2.0' end # Include database gems for the database adapters NixOS supports gem 'mysql2', '~> 0.5.0' gem "with_advisory_lock" gem 'trilogy', '~> 2.12.4' gem "with_advisory_lock" gem 'pg', '~> 1.6.2' gem 'sqlite3', '~> 2.9.4' group :development, :test do gem 'debug' end group :development do gem 'listen', '~> 3.3' gem 'yard', require: false gem 'svg_sprite', require: false gem 'bullet' end group :test do gem "rails-dom-testing", '>= 2.3.0' gem 'mocha', '>= 2.0.1' gem 'simplecov', '~> 0.22.0', :require => false gem "ffi", platforms: [:mri, :mingw, :x64_mingw, :mswin] # For running system tests gem 'puma' gem "capybara", ">= 3.39" gem 'selenium-webdriver', '>= 4.11.0' # RuboCop gem 'rubocop', '~> 1.88.0', require: false gem 'rubocop-performance', '~> 1.26.0', require: false gem 'rubocop-rails', '~> 2.34.3', require: false gem 'bundle-audit', require: false # for testing oauth provider capabilities gem 'oauth2' gem 'webrick' end gem "webrick" local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") if File.exist?(local_gemfile) eval_gemfile local_gemfile end # Load plugins' Gemfiles Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| eval_gemfile file end