1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 source 'https://rubygems.org'
7 gem 'rails', '~> 7.0.0'
12 group :test, :development do
13 gem 'factory_bot_rails'
15 # Note: "require: false" here tells bunder not to automatically
16 # 'require' the packages during application startup. Installation is
18 gem 'test-unit', require: false
19 gem 'simplecov', require: false
20 gem 'simplecov-rcov', require: false
21 gem 'mocha', require: false
37 # Locking to 5.10.3 to workaround issue in 5.11.1 (https://github.com/seattlerb/minitest/issues/730)
38 gem 'minitest', '5.10.3'
44 gem 'themes_for_rails', git: 'https://github.com/arvados/themes_for_rails'
46 gem 'arvados', '~> 2.7.0.rc1'
55 gem 'rails-controller-testing'
59 gem 'mini_portile2', '~> 2.8', '>= 2.8.1'
61 # Install any plugin gems
62 Dir.glob(File.join(File.dirname(__FILE__), 'lib', '**', "Gemfile")) do |f|
63 eval(IO.read(f), binding)