# Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: AGPL-3.0 source 'https://rubygems.org' # Rails 7.1.3.x is the last version to support Ruby 2.7.0 in Ubuntu 20.04. # Later 7.1.x releases require Ruby >= 2.7.3: # gem 'rails', '~> 7.1.3.4' gem 'responders' gem 'i18n' gem 'sprockets-rails' group :test, :development do gem 'factory_bot_rails' # Enforce Ruby 2.7 compatibility for an indirect dependency. # Can't use ~> because 6.4.6 changes the minimum Ruby (!). gem 'factory_bot', '6.4.5' # This version pin enforces Ruby 2.7 compatibility for a direct dependency. gem 'ruby-prof', '~> 1.6.3' # Note: "require: false" here tells bunder not to automatically # 'require' the packages during application startup. Installation is # still mandatory. gem 'test-unit', require: false gem 'simplecov', require: false gem 'simplecov-rcov', require: false gem 'mocha', require: false gem 'byebug' gem 'listen' end gem 'pg', '~> 1.0' # multi_json stopped supporting Ruby 2.7 in 1.16.0. gem 'multi_json', '~> 1.15.0' gem 'oj' gem 'jquery-rails' gem 'acts_as_api' gem 'passenger', '~> 6.0.26' # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730) gem 'minitest', '5.10.3' gem 'andand' gem 'optimist' gem 'arvados', '~> 3.1.2' gem 'httpclient' gem 'lograge' gem 'logstash-event' gem 'rails-observers' gem 'rails-perftest' gem 'rails-controller-testing' gem 'webrick' gem 'mini_portile2', '~> 2.8', '>= 2.8.1' # Enforce Ruby 2.7 compatibility for indirect dependencies. gem 'nokogiri', '~> 1.15.7' gem 'net-imap', '~> 0.3.8' gem 'securerandom', '~> 0.3.2' # Install any plugin gems Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f| eval(IO.read(f), binding) end